• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1export class Test {
2  /**
3   * the ut for parent node has no JsDoc, some child nodes have two or more JsDoc
4   *
5   * @since 6
6   */
7  /**
8   * @since 7
9   */
10  id: number;
11
12  /**
13   * @since 7
14   */
15  /**
16   * @since 8
17   */
18  name: string;
19
20  /**
21   * @since 9
22   */
23  age: number;
24}