fix: current page atom (#4515)

This commit is contained in:
Alex Yang
2023-09-26 09:53:01 -05:00
committed by GitHub
parent 1b6cd70247
commit a633fb6dea
2 changed files with 8 additions and 3 deletions

View File

@@ -60,6 +60,6 @@ export declare const pushLayoutAtom: WritableAtom<
void
>;
export declare const deleteLayoutAtom: WritableAtom<null, [string], void>;
export declare const currentPageAtom: Atom<Promise<Page>>;
export declare const currentPageIdAtom: Atom<string | null>;
export declare const currentWorkspaceAtom: Atom<Promise<Workspace>>;
export declare const rootStore: ReturnType<typeof getDefaultStore>;