# mod.ts
export class Class<A, B> extends Map<A, B> implements Iterator<A>, Iterable<B> {}

# diagnostics
error[missing-jsdoc]: exported symbol is missing JSDoc documentation
 --> /mod.ts:1:1
  | 
1 | export class Class<A, B> extends Map<A, B> implements Iterator<A>, Iterable<B> {}
  | ^

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

class Class<A, B> extends Map<A, B> implements Iterator<A>, Iterable<B>



# output.json
{
  "symbols": [
    {
      "name": "Class",
      "declarations": [
        {
          "location": {
            "filename": "file:///mod.ts",
            "line": 0,
            "col": 0,
            "byteIndex": 0
          },
          "declarationKind": "export",
          "kind": "class",
          "def": {
            "extends": "Map",
            "implements": [
              {
                "repr": "Iterator",
                "kind": "typeRef",
                "value": {
                  "typeParams": [
                    {
                      "repr": "A",
                      "kind": "typeRef",
                      "value": {
                        "typeName": "A",
                        "resolution": {
                          "kind": "typeParam",
                          "declaringName": "Class",
                          "declaringKind": "class"
                        }
                      }
                    }
                  ],
                  "typeName": "Iterator"
                }
              },
              {
                "repr": "Iterable",
                "kind": "typeRef",
                "value": {
                  "typeParams": [
                    {
                      "repr": "B",
                      "kind": "typeRef",
                      "value": {
                        "typeName": "B",
                        "resolution": {
                          "kind": "typeParam",
                          "declaringName": "Class",
                          "declaringKind": "class"
                        }
                      }
                    }
                  ],
                  "typeName": "Iterable"
                }
              }
            ],
            "typeParams": [
              {
                "name": "A"
              },
              {
                "name": "B"
              }
            ],
            "superTypeParams": [
              {
                "repr": "A",
                "kind": "typeRef",
                "value": {
                  "typeName": "A",
                  "resolution": {
                    "kind": "typeParam",
                    "declaringName": "Class",
                    "declaringKind": "class"
                  }
                }
              },
              {
                "repr": "B",
                "kind": "typeRef",
                "value": {
                  "typeName": "B",
                  "resolution": {
                    "kind": "typeParam",
                    "declaringName": "Class",
                    "declaringKind": "class"
                  }
                }
              }
            ]
          }
        }
      ]
    }
  ]
}
