UNPKG

cdktg

Version:
15 lines (14 loc) 395 B
import { Construct } from "constructs"; export interface ResourceProps { readonly description?: string; } export declare abstract class Resource extends Construct { readonly id: string; readonly title: string; readonly description?: string; constructor(scope: Construct, id: string, props: ResourceProps); /** * @internal */ abstract _toThreagile(): any; }