agent-claw: automated task changes
This commit is contained in:
20
cdk/node_modules/aws-cdk-lib/rosetta/validation-plugin.ts-fixture
generated
vendored
Normal file
20
cdk/node_modules/aws-cdk-lib/rosetta/validation-plugin.ts-fixture
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import { Construct } from 'constructs';
|
||||
import { App, IPolicyValidationPlugin, Stage, IPolicyValidationContext, PolicyValidationPluginReport, Validations } from 'aws-cdk-lib';
|
||||
|
||||
declare class ThirdPartyPluginX implements IPolicyValidationPlugin {
|
||||
public readonly name: string;
|
||||
public validate(x: any): any;
|
||||
}
|
||||
|
||||
declare class ThirdPartyPluginY implements IPolicyValidationPlugin {
|
||||
public readonly name: string;
|
||||
public validate(x: any): any;
|
||||
}
|
||||
|
||||
class fixture$construct extends Construct {
|
||||
public constructor(scope: Construct, id: string) {
|
||||
super(scope, id);
|
||||
|
||||
/// here
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user