cdktg
Version:
Agile Threat Modeling as Code
12 lines (11 loc) • 376 B
TypeScript
import { Construct } from "constructs";
import { TechnicalAsset, Scope, CIATriad } from "..";
export interface BrowserProps {
readonly description?: string;
readonly scope: Scope;
readonly owner?: string;
readonly ciaTriad: CIATriad;
}
export declare class Browser extends TechnicalAsset {
constructor(scope: Construct, id: string, props: BrowserProps);
}