export type BuildArtifact = { name: string; description: string; projectPath: string; preBuildCommand?: () => string; buildCommand: (args: BuildCommandArgs) => string; postBuildCommand?: () => string; }; /** * API 프로젝트 빌드 산출물에 대한 규칙들. * cli.ts의 build_api 함수가 이것을 보고 그대로 실행합니다. */ export declare const API_ARTIFACTS: BuildArtifact<{ configFilePath: string; }>[]; /** * 웹 프로젝트 빌드 산출물에 대한 규칙들. * cli.ts의 build_web 함수가 이것을 보고 그대로 실행합니다. */ export declare const WEB_ARTIFACTS: BuildArtifact[]; //# sourceMappingURL=build-config.d.ts.map