next
Version:
The React Framework
22 lines (21 loc) • 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>;