@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 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
- private history;
2927
- private detected;
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;