Skip to content

Commit 7f18746

Browse files
committed
add test
1 parent 2fc8879 commit 7f18746

1 file changed

Lines changed: 43 additions & 0 deletions

File tree

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# mod.ts
2+
export { Audio } from './audio.ts';
3+
4+
# audio.ts
5+
import { Speech } from './speech.ts';
6+
7+
/** Some documentation. **/
8+
export namespace Audio {
9+
export { Speech as Speech };
10+
}
11+
12+
# speech.ts
13+
export namespace Speech {}
14+
15+
# output.txt
16+
Defined in file:///audio.ts:4:1
17+
18+
namespace Audio
19+
Some documentation. *
20+
21+
22+
23+
# output.json
24+
[
25+
{
26+
"name": "Audio",
27+
"isDefault": false,
28+
"location": {
29+
"filename": "file:///audio.ts",
30+
"line": 4,
31+
"col": 0,
32+
"byteIndex": 67
33+
},
34+
"declarationKind": "export",
35+
"jsDoc": {
36+
"doc": "Some documentation. *"
37+
},
38+
"kind": "namespace",
39+
"namespaceDef": {
40+
"elements": []
41+
}
42+
}
43+
]

0 commit comments

Comments
 (0)