feat: méthode WebSocket HA pour Lovelace + vue lumières créée

This commit is contained in:
Nox
2026-02-22 18:28:34 +00:00
parent 7d6605e33e
commit 917d1da7c0
668 changed files with 198094 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
// Declare the class that *might* be present in the browser
export declare interface WindowHeaders {
get(key: string): string[]; // in some browsers .get returns a single string
getAll(key: string): string[]; // some browsers don't have a .getAll
has(key: string): boolean;
delete(key: string): void;
keys(): any;
entries(): any;
forEach(callback: (value: string, key: string) => void): any;
append(key: string, value: string): void;
set(key: string, value: string): void;
}