buncid/types.ts
Benjamin Toby 1e57cdbc1d Updates
2025-02-03 14:21:32 +01:00

16 lines
365 B
TypeScript

export interface NodeCIConfig {
start: string;
preflight: string[] | string;
postflight?: string[] | string;
redeploy_path?: string;
first_run?: boolean;
port?: string | number | (string | number)[];
build?: NodeCIBuild;
debounce?: number;
}
export interface NodeCIBuild {
paradigm: "Next.JS" | "Remix";
out_dir?: string;
}