nodecid/types.ts

15 lines
342 B
TypeScript
Raw Permalink 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;
}
export interface NodeCIBuild {
paradigm: "Next.JS" | "Remix";
out_dir?: string;
}