Files
old-kitabcitab-frontend/kitabcitab/node_modules/next/dist/build/output/store.d.ts
2022-12-27 12:05:56 +01:00

22 lines
537 B
TypeScript

export declare type OutputState = {
bootstrap: true;
appUrl: string | null;
bindAddr: string | null;
} | ({
bootstrap: false;
appUrl: string | null;
bindAddr: string | null;
} & ({
loading: true;
trigger: string | undefined;
} | {
loading: false;
typeChecking: boolean;
partial: 'client and server' | undefined;
modules: number;
errors: string[] | null;
warnings: string[] | null;
hasEdgeServer: boolean;
}));
export declare const store: import("unistore").Store<OutputState>;