mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-02-24 11:47:59 +00:00
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
export async function put(key: string, value: any) {
|
|
// @ts-ignore
|
|
return window.storage.put(key, value);
|
|
}
|
|
|
|
export async function remove(key: string) {
|
|
// @ts-ignore
|
|
return window.storage.remove(key);
|
|
}
|