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
# mod.ts
/**
* Interface js doc
*/
export default interface Reader {
/** Read n bytes */
read?(buf: Uint8Array, something: unknown): Promise<number>
}
# output.txt
Defined in file:///mod.ts:3:1
interface default
Interface js doc
read?(buf: Uint8Array, something: unknown): Promise<number>
Read n bytes
# output.json
{
"symbols": [
{
"name": "default",
"isDefault": true,
"declarations": [
{
"location": {
"filename": "file:///mod.ts",
"line": 3,
"col": 0,
"byteIndex": 28
},
"declarationKind": "export",
"jsDoc": {
"doc": "Interface js doc"
},
"kind": "interface",
"def": {
"defName": "Reader",
"methods": [
{
"name": "read",
"jsDoc": {
"doc": "Read n bytes"
},
"kind": "method",
"location": {
"filename": "file:///mod.ts",
"line": 5,
"col": 4,
"byteIndex": 90
},
"params": [
{
"kind": "identifier",
"name": "buf",
"optional": false,
"tsType": {
"repr": "Uint8Array",
"kind": "typeRef",
"value": {
"typeName": "Uint8Array"
}
}
},
{
"kind": "identifier",
"name": "something",
"optional": false,
"tsType": {
"repr": "unknown",
"kind": "keyword",
"value": "unknown"
}
}
],
"optional": true,
"returnType": {
"repr": "Promise",
"kind": "typeRef",
"value": {
"typeParams": [
{
"repr": "number",
"kind": "keyword",
"value": "number"
}
],
"typeName": "Promise"
}
}
}
]
}
}
]
}
]
}