@ncodedcode/ncode_react_lib
Version:
ncode react application context library
9 lines (8 loc) • 312 B
TypeScript
import { NCStorage } from "./NCStorage";
export declare class MemoryStorage implements NCStorage {
private memory;
contains(key: string): Promise<boolean>;
delete(key: string): Promise<boolean>;
load(key: string): Promise<string | null>;
save(key: string, value: string): Promise<boolean>;
}