123456789101112131415161718192021 |
- 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>;
|