We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e9149e commit f7de583Copy full SHA for f7de583
src/index.ts
@@ -2,10 +2,7 @@ import { recursivelyObservable } from "./observable.js";
2
import { SqliteState } from "./sqlite.js";
3
import { unreachable } from "./util.js";
4
5
-export type SnapshotPolicy =
6
- | "never"
7
- | "every-change"
8
- | { changes: number };
+export type SnapshotPolicy = "never" | "every-change" | { changes: number };
9
10
export type StateOptions = {
11
snapshotPolicy: SnapshotPolicy;
0 commit comments