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