# old/mod.ts
export type ID = string;

# new/mod.ts
export type ID = number;

# output.json
{
  "modifiedModules": {
    "file:///mod.ts": {
      "modified": [
        {
          "name": "ID",
          "declarations": {
            "modified": [
              {
                "kind": "typeAlias",
                "defChanges": {
                  "type": "typeAlias",
                  "tsTypeChange": {
                    "old": {
                      "repr": "string",
                      "kind": "keyword",
                      "value": "string"
                    },
                    "new": {
                      "repr": "number",
                      "kind": "keyword",
                      "value": "number"
                    }
                  }
                }
              }
            ]
          }
        }
      ]
    }
  }
}
