@slashid/react-primitives
Version:
Primitive components for the /id React SDK
10 lines • 327 B
TypeScript
export declare class MemoryStorage implements Storage {
private data;
clear(): void;
getItem(key: string): string | null;
removeItem(key: string): void;
key(index: number): string | null;
setItem(key: string, value: string): void;
get length(): number;
}
//# sourceMappingURL=memory-storage.d.ts.map