buncid/dist/types.d.ts

15 lines
364 B
TypeScript
Raw Normal View History

2025-01-16 05:22:33 +00:00
export interface NodeCIConfig {
start: string;
preflight: string[] | string;
postflight?: string[] | string;
redeploy_path?: string;
first_run?: boolean;
port?: string | number | (string | number)[];
build?: NodeCIBuild;
2025-02-03 13:21:32 +00:00
debounce?: number;
2025-01-16 05:22:33 +00:00
}
export interface NodeCIBuild {
paradigm: "Next.JS" | "Remix";
out_dir?: string;
}