fix minor bugs and abstract more

This commit is contained in:
Adrian Zürcher
2025-05-08 17:25:07 +02:00
parent a06912de69
commit 2bb3102828
5 changed files with 90 additions and 283 deletions

View File

@@ -1,6 +1,6 @@
export type Set = {
path: string;
value: number | undefined;
value: number | boolean | undefined;
};
export type Sets = Set[];

View File

@@ -2,7 +2,7 @@ export type Subscribe = {
uuid?: string;
path?: string;
depth?: number;
value?: string | undefined;
value?: string | number | boolean | undefined;
};
export type Subs = Subscribe[];