b9a2152
1
2
3
4
5
import { writable } from "svelte/store"; // null = unknown/loading, true = PRO, false = not PRO export const isPro = writable<boolean | null>(null);