signal-desktop/ts/shims/storage.ts

8 lines
154 B
TypeScript
Raw Normal View History

export function put(key: string, value: any) {
window.storage.put(key, value);
}
export function remove(key: string) {
window.storage.remove(key);
}