deno_doc 0.198.0

doc generation for deno
Documentation
# old/mod.ts
export namespace Foo {
  export function hello(): void {}
  export const value: string = "";
}

# new/mod.ts
export namespace Bar {
  export function hello(): void {}
  export const value: string = "";
}

# output.json
{
  "modifiedModules": {
    "file:///mod.ts": {
      "modified": [
        {
          "name": "Bar",
          "nameChange": {
            "old": "Foo",
            "new": "Bar"
          }
        }
      ]
    }
  }
}