21 lines
588 B
Plaintext
21 lines
588 B
Plaintext
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
|
|
}
|
|
}
|