Initial boiler plate project
This commit is contained in:
22
node_modules/next/dist/build/output/store.d.ts
generated
vendored
Normal file
22
node_modules/next/dist/build/output/store.d.ts
generated
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
export type OutputState = {
|
||||
bootstrap: true;
|
||||
appUrl: string | null;
|
||||
bindAddr: string | null;
|
||||
} | ({
|
||||
bootstrap: false;
|
||||
appUrl: string | null;
|
||||
bindAddr: string | null;
|
||||
} & ({
|
||||
loading: true;
|
||||
trigger: string | undefined;
|
||||
url: string | undefined;
|
||||
} | {
|
||||
loading: false;
|
||||
typeChecking: boolean;
|
||||
totalModulesCount: number;
|
||||
errors: string[] | null;
|
||||
warnings: string[] | null;
|
||||
hasEdgeServer: boolean;
|
||||
}));
|
||||
export declare function formatTrigger(trigger: string): string;
|
||||
export declare const store: import("unistore").Store<OutputState>;
|
||||
Reference in New Issue
Block a user