UNPKG

cdktg

Version:
17 lines (16 loc) 342 B
export interface AuthorProps { readonly name: string; readonly homepage?: string; } export declare class Author { readonly name: string; readonly homepage?: string; constructor(props: AuthorProps); /** * @internal */ _toThreagile(): { name: string; homepage: string | undefined; }; }