# mod.ts
export interface Interface<V> extends Iterable<V> {}

# diagnostics
error[missing-jsdoc]: exported symbol is missing JSDoc documentation
 --> /mod.ts:1:1
  | 
1 | export interface Interface<V> extends Iterable<V> {}
  | ^

# output.txt
Defined in file:///mod.ts:1:1

interface Interface<V> extends Iterable<V>



# output.json
[
  {
    "name": "Interface",
    "isDefault": false,
    "location": {
      "filename": "file:///mod.ts",
      "line": 1,
      "col": 0,
      "byteIndex": 0
    },
    "declarationKind": "export",
    "kind": "interface",
    "interfaceDef": {
      "extends": [
        {
          "repr": "Iterable",
          "kind": "typeRef",
          "typeRef": {
            "typeParams": [
              {
                "repr": "V",
                "kind": "typeRef",
                "typeRef": {
                  "typeParams": null,
                  "typeName": "V"
                }
              }
            ],
            "typeName": "Iterable"
          }
        }
      ],
      "constructors": [],
      "methods": [],
      "properties": [],
      "callSignatures": [],
      "indexSignatures": [],
      "typeParams": [
        {
          "name": "V"
        }
      ]
    }
  }
]
