@tixyel/streamelements 6.2.1 → 6.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -2923,8 +2923,8 @@ declare class useComms<T extends MessageMap> extends EventProvider<BaseEvents<T>
|
|
|
2923
2923
|
private SE_API;
|
|
2924
2924
|
id: string;
|
|
2925
2925
|
loaded: boolean;
|
|
2926
|
-
|
|
2927
|
-
|
|
2926
|
+
history: Array<UseCommItem<T>>;
|
|
2927
|
+
detected: Set<string>;
|
|
2928
2928
|
constructor(options?: UseCommsOptions);
|
|
2929
2929
|
send<K extends keyof T>(key: K, data: T[K]): Promise<void>;
|
|
2930
2930
|
update(history: Array<UseCommItem<T>>): void;
|