UNPKG

cdktg

Version:
12 lines (11 loc) 376 B
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); }