# mod.ts
export interface Interface extends Iterator, Iterable {}
# diagnostics
error[missing-jsdoc]: exported symbol is missing JSDoc documentation
--> /mod.ts:1:1
|
1 | export interface Interface extends Iterator, Iterable {}
| ^
# output.txt
Defined in file:///mod.ts:0:1
interface Interface extends Iterator, Iterable
# output.json
{
"symbols": [
{
"name": "Interface",
"declarations": [
{
"location": {
"filename": "file:///mod.ts",
"line": 0,
"col": 0,
"byteIndex": 0
},
"declarationKind": "export",
"kind": "interface",
"def": {
"extends": [
{
"repr": "Iterator",
"kind": "typeRef",
"value": {
"typeName": "Iterator"
}
},
{
"repr": "Iterable",
"kind": "typeRef",
"value": {
"typeName": "Iterable"
}
}
]
}
}
]
}
]
}