File: jsDeclarationsTypedefPropertyAndExportAssignment.types

package info (click to toggle)
node-typescript 4.9.5%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 533,908 kB
  • sloc: javascript: 2,018,330; makefile: 7; sh: 1
file content (101 lines) | stat: -rw-r--r-- 3,520 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
=== tests/cases/conformance/jsdoc/declarations/index.js ===
const {taskGroups, taskNameToGroup} = require('./module.js');
>taskGroups : { parseHTML: { id: "parseHTML"; label: string; }; styleLayout: { id: "styleLayout"; label: string; }; }
>taskNameToGroup : { [x: string]: import("tests/cases/conformance/jsdoc/declarations/module").TaskGroup; }
>require('./module.js') : typeof import("tests/cases/conformance/jsdoc/declarations/module")
>require : any
>'./module.js' : "./module.js"

/** @typedef {import('./module.js').TaskGroup} TaskGroup */

/**
 * @typedef TaskNode
 * @prop {TaskNode[]} children
 * @prop {TaskNode|undefined} parent
 * @prop {TaskGroup} group
 */

/** @typedef {{timers: Map<string, TaskNode>}} PriorTaskData */
class MainThreadTasks {
>MainThreadTasks : MainThreadTasks

    /**
     * @param {TaskGroup} x
     * @param {TaskNode} y
     */
    constructor(x, y){}
>x : import("tests/cases/conformance/jsdoc/declarations/module").TaskGroup
>y : TaskNode
}

module.exports = MainThreadTasks;
>module.exports = MainThreadTasks : typeof MainThreadTasks
>module.exports : typeof MainThreadTasks
>module : { exports: typeof MainThreadTasks; }
>exports : typeof MainThreadTasks
>MainThreadTasks : typeof MainThreadTasks

=== tests/cases/conformance/jsdoc/declarations/module.js ===
/** @typedef {'parseHTML'|'styleLayout'} TaskGroupIds */

/**
 * @typedef TaskGroup
 * @property {TaskGroupIds} id
 * @property {string} label
 * @property {string[]} traceEventNames
 */

/**
 * @type {{[P in TaskGroupIds]: {id: P, label: string}}}
 */
const taskGroups = {
>taskGroups : { parseHTML: { id: "parseHTML"; label: string; }; styleLayout: { id: "styleLayout"; label: string; }; }
>{    parseHTML: {        id: 'parseHTML',        label: 'Parse HTML & CSS'    },    styleLayout: {        id: 'styleLayout',        label: 'Style & Layout'    },} : { parseHTML: { id: "parseHTML"; label: string; }; styleLayout: { id: "styleLayout"; label: string; }; }

    parseHTML: {
>parseHTML : { id: "parseHTML"; label: string; }
>{        id: 'parseHTML',        label: 'Parse HTML & CSS'    } : { id: "parseHTML"; label: string; }

        id: 'parseHTML',
>id : "parseHTML"
>'parseHTML' : "parseHTML"

        label: 'Parse HTML & CSS'
>label : string
>'Parse HTML & CSS' : "Parse HTML & CSS"

    },
    styleLayout: {
>styleLayout : { id: "styleLayout"; label: string; }
>{        id: 'styleLayout',        label: 'Style & Layout'    } : { id: "styleLayout"; label: string; }

        id: 'styleLayout',
>id : "styleLayout"
>'styleLayout' : "styleLayout"

        label: 'Style & Layout'
>label : string
>'Style & Layout' : "Style & Layout"

    },
}

/** @type {Object<string, TaskGroup>} */
const taskNameToGroup = {};
>taskNameToGroup : { [x: string]: TaskGroup; }
>{} : {}

module.exports = {
>module.exports = {    taskGroups,    taskNameToGroup,} : typeof module.exports
>module.exports : typeof module.exports
>module : { exports: typeof module.exports; }
>exports : typeof module.exports
>{    taskGroups,    taskNameToGroup,} : { taskGroups: { parseHTML: { id: "parseHTML"; label: string; }; styleLayout: { id: "styleLayout"; label: string; }; }; taskNameToGroup: { [x: string]: TaskGroup; }; }

    taskGroups,
>taskGroups : { parseHTML: { id: "parseHTML"; label: string; }; styleLayout: { id: "styleLayout"; label: string; }; }

    taskNameToGroup,
>taskNameToGroup : { [x: string]: TaskGroup; }

};