1 | import { Construct } from 'constructs';
|
2 | import { CommonProjectProps, Project } from './project';
|
3 | export interface PipelineProjectProps extends CommonProjectProps {
|
4 | }
|
5 | /**
|
6 | * A convenience class for CodeBuild Projects that are used in CodePipeline.
|
7 | */
|
8 | export declare class PipelineProject extends Project {
|
9 | constructor(scope: Construct, id: string, props?: PipelineProjectProps);
|
10 | }
|