UNPKG

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