8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
|
import { persistentMap } from "@nanostores/persistent";
|
||
|
|
||
|
type Settings = {
|
||
|
onGoingOAuth2Process?: string
|
||
|
}
|
||
|
|
||
|
export const $settings = persistentMap<Settings>("settings::", {})
|