UNPKG

@cdktf/commons

Version:
18 lines (17 loc) 315 B
export interface ModuleSchema { name: string; empty?: boolean; inputs: Input[]; outputs: Output[]; } export interface Output { name: string; type: string; } export interface Input { name: string; type: string; description?: string; default?: string; required: boolean; }