Skip to content

KitStorage

KitStorage = object

Defined in: types.ts:38

Minimal storage interface compatible with Web Storage and custom backends.

getItem: (key) => string | null | Promise<string | null>

Defined in: types.ts:39

string

string | null | Promise<string | null>


removeItem: (key) => void | Promise<void>

Defined in: types.ts:41

string

void | Promise<void>


setItem: (key, value) => void | Promise<void>

Defined in: types.ts:40

string

string

void | Promise<void>