fix datatree sub and unsubscribe at tree

This commit is contained in:
Adrian Zürcher
2025-05-12 17:17:53 +02:00
parent 802f1c71db
commit c8b27813ae
5 changed files with 196 additions and 42 deletions

View File

@@ -7,5 +7,6 @@ export type Response = {
get?: Gets;
set?: Sets;
subscribe?: Subs;
unsubscribe?: Subs;
publish?: Pubs;
};

View File

@@ -1,6 +1,6 @@
export type Subscribe = {
uuid?: string;
path?: string;
uuid?: string | undefined;
path?: string | undefined;
depth?: number;
value?: string | number | boolean | undefined;
};