import { awscdk } from 'projen'; export interface CDKPipelineAppOptions extends awscdk.AwsCdkTypeScriptAppOptions { /** * If set to true, some default values are modified compared to the settings for AwsCdkTypeScriptApp * Specifically, the following default values are changed: * - licensed is false by default * - githubOptions.mergify is false by default * @default The default is true. */ readonly closedSource?: boolean; } /** * CDK code pipeline Delivered Project * * @pjid cdk-pipeline-app */ export declare class CDKPipelineApp extends awscdk.AwsCdkTypeScriptApp { constructor(options: CDKPipelineAppOptions); }