1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# old/mod.ts
export function foo() {}
export function bar() {}
# new/mod.ts
export function foo() {}
# output.json
{
"modifiedModules": {
"file:///mod.ts": {
"removed": [
{
"name": "bar",
"declarations": [
{
"location": {
"filename": "file:///mod.ts",
"line": 1,
"col": 0,
"byteIndex": 25
},
"declarationKind": "export",
"kind": "function",
"def": {
"params": [],
"returnType": {
"repr": "void",
"kind": "keyword",
"value": "void"
},
"hasBody": true
}
}
]
}
]
}
}
}