@signalwire/core
Version:
Shared code for the SignalWire JS SDK
11 lines • 422 B
TypeScript
export declare const localStorage: {
getItem: (key: string) => Promise<any>;
setItem: (key: string, value: any) => Promise<void>;
removeItem: (key: string) => Promise<void>;
};
export declare const sessionStorage: {
getItem: (key: string) => Promise<any>;
setItem: (key: string, value: any) => Promise<void>;
removeItem: (key: string) => Promise<void>;
};
//# sourceMappingURL=index.native.d.ts.map