This repository has been archived on 2026-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novarix-networks-homepage/node_modules/next/dist/build/output/store.d.ts
T
Kismet Hasanaj 34dc9aec52 .
2026-05-02 20:07:02 +02:00

25 lines
630 B
TypeScript

export type OutputState = {
bootstrap: true;
appUrl: string | null;
bindAddr: string | null;
logging: boolean;
} | ({
bootstrap: false;
appUrl: string | null;
bindAddr: string | null;
logging: boolean;
} & ({
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>;