UNPKG

575 BTypeScriptView Raw
1import { Artifacts } from './artifacts';
2/**
3 * A `NO_ARTIFACTS` CodeBuild Project Artifact definition.
4 * This is the default artifact type,
5 * if none was specified when creating the Project
6 * (and the source was not specified to be CodePipeline).
7 * *Note*: the `NO_ARTIFACTS` type cannot be used as a secondary artifact,
8 * and because of that, you're not allowed to specify an identifier for it.
9 *
10 * This class is private to the @aws-codebuild package.
11 */
12export declare class NoArtifacts extends Artifacts {
13 readonly type = "NO_ARTIFACTS";
14 constructor();
15}