agent-claw: automated task changes
This commit is contained in:
21
cdk/node_modules/constructs/lib/metadata.d.ts
generated
vendored
Normal file
21
cdk/node_modules/constructs/lib/metadata.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* An entry in the construct metadata table.
|
||||
*/
|
||||
export interface MetadataEntry {
|
||||
/**
|
||||
* The metadata entry type.
|
||||
*/
|
||||
readonly type: string;
|
||||
/**
|
||||
* The data.
|
||||
*/
|
||||
readonly data: any;
|
||||
/**
|
||||
* Stack trace at the point of adding the metadata.
|
||||
*
|
||||
* Only available if `addMetadata()` is called with `stackTrace: true`.
|
||||
*
|
||||
* @default - no trace information
|
||||
*/
|
||||
readonly trace?: string[];
|
||||
}
|
||||
Reference in New Issue
Block a user