agent-claw: automated task changes
This commit is contained in:
19
cdk/node_modules/aws-cdk-lib/rosetta/README-custom-resource-provider.ts-fixture
generated
vendored
Normal file
19
cdk/node_modules/aws-cdk-lib/rosetta/README-custom-resource-provider.ts-fixture
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
import { CfnOutput, Token } from 'aws-cdk-lib';
|
||||
import { Construct } from 'constructs';
|
||||
|
||||
declare interface SumProps {
|
||||
readonly lhs: number;
|
||||
readonly rhs: number;
|
||||
}
|
||||
declare class Sum extends Construct {
|
||||
public readonly result: number;
|
||||
constructor(scope: Construct, id: string, props: SumProps);
|
||||
}
|
||||
|
||||
class fixture$construct extends Construct {
|
||||
public constructor(scope: Construct, id: string) {
|
||||
super(scope, id);
|
||||
|
||||
/// here
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user