UNPKG

@xapp/chat-widget

Version:
14 lines (13 loc) 274 B
/** * Get an item off of local storage by key * * @param key */ export declare function get(key: string): string | undefined; /** * Set an item on local storage by key * * @param key * @param value */ export declare function set(key: string, value: unknown): void;