14 lines
No EOL
572 B
TypeScript
Executable file
14 lines
No EOL
572 B
TypeScript
Executable file
import { IWindowStorage } from "./IWindowStorage.js";
|
|
export declare class SessionStorage implements IWindowStorage<string> {
|
|
constructor();
|
|
initialize(): Promise<void>;
|
|
getItem(key: string): string | null;
|
|
getUserData(key: string): string | null;
|
|
setItem(key: string, value: string): void;
|
|
setUserData(key: string, value: string): Promise<void>;
|
|
removeItem(key: string): void;
|
|
getKeys(): string[];
|
|
containsKey(key: string): boolean;
|
|
decryptData(): Promise<object | null>;
|
|
}
|
|
//# sourceMappingURL=SessionStorage.d.ts.map
|