UNPKG

460 BTypeScriptView Raw
1import * as cxschema from '@aws-cdk/cloud-assembly-schema';
2import { AssetManifest } from 'cdk-assets';
3export declare class AssetManifestBuilder {
4 private readonly manifest;
5 addFileAsset(id: string, source: cxschema.FileSource, destination: cxschema.FileDestination): void;
6 addDockerImageAsset(id: string, source: cxschema.DockerImageSource, destination: cxschema.DockerImageDestination): void;
7 toManifest(directory: string): AssetManifest;
8}