deno_doc 0.198.0

doc generation for deno
Documentation
# old/mod.ts
export class Foo {
  bar() {}
}

# new/mod.ts
export class Foo {
  bar() {}
  baz() {}
}

# output.json
{
  "modifiedModules": {
    "file:///mod.ts": {
      "modified": [
        {
          "name": "Foo",
          "declarations": {
            "modified": [
              {
                "kind": "class",
                "defChanges": {
                  "type": "class",
                  "methodChanges": {
                    "added": [
                      {
                        "name": "baz",
                        "kind": "method",
                        "functionDef": {
                          "params": [],
                          "returnType": {
                            "repr": "void",
                            "kind": "keyword",
                            "value": "void"
                          },
                          "hasBody": true
                        },
                        "location": {
                          "filename": "file:///mod.ts",
                          "line": 2,
                          "col": 2,
                          "byteIndex": 32
                        }
                      }
                    ]
                  }
                }
              }
            ]
          }
        }
      ]
    }
  }
}