1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-18 13:22:55 -05:00
denoland-deno/tests/specs/doc/html/a.ts

11 lines
182 B
TypeScript

/** Doc comment */
export interface MyInterface {
/** Doc comment */
prop?: string;
}
/** Doc comment */
export class MyClass {
/** Doc comment */
prop: MyInterface = {};
}