@freesignal/protocol 0.5.3 → 0.5.4
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/node.d.ts +1 -1
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/node.d.ts
CHANGED
|
@@ -78,6 +78,6 @@ declare class SessionMap implements LocalStorage<string, KeySession> {
|
|
|
78
78
|
has(key: string): Promise<boolean>;
|
|
79
79
|
delete(key: string): Promise<boolean>;
|
|
80
80
|
clear(): Promise<void>;
|
|
81
|
-
entries(): Promise<
|
|
81
|
+
entries(): Promise<Iterable<[string, KeySession]>>;
|
|
82
82
|
}
|
|
83
83
|
export {};
|
package/dist/types.d.ts
CHANGED
|
@@ -174,6 +174,6 @@ export declare class AsyncMap<K, V> implements LocalStorage<K, V> {
|
|
|
174
174
|
has(key: K): Promise<boolean>;
|
|
175
175
|
delete(key: K): Promise<boolean>;
|
|
176
176
|
clear(): Promise<void>;
|
|
177
|
-
entries(): Promise<
|
|
177
|
+
entries(): Promise<Iterable<[K, V]>>;
|
|
178
178
|
}
|
|
179
179
|
export {};
|