agent-claw: automated task changes
This commit is contained in:
27
cdk/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/schema.d.ts
generated
vendored
Normal file
27
cdk/node_modules/@aws-cdk/cloud-assembly-schema/lib/assets/schema.d.ts
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
import type { DockerImageAsset } from './docker-image-asset';
|
||||
import type { FileAsset } from './file-asset';
|
||||
/**
|
||||
* Definitions for the asset manifest
|
||||
*/
|
||||
export interface AssetManifest {
|
||||
/**
|
||||
* Version of the manifest
|
||||
*/
|
||||
readonly version: string;
|
||||
/**
|
||||
* The file assets in this manifest
|
||||
*
|
||||
* @default - No files
|
||||
*/
|
||||
readonly files?: {
|
||||
[id: string]: FileAsset;
|
||||
};
|
||||
/**
|
||||
* The Docker image assets in this manifest
|
||||
*
|
||||
* @default - No Docker images
|
||||
*/
|
||||
readonly dockerImages?: {
|
||||
[id: string]: DockerImageAsset;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user