Skip to content

Commit 1c2318d

Browse files
committed
Resolve typeReferenceDirective as fileOrDirectory instead of just directory when its not default typeRoots
Fixes #37708 Bug 2 part of the issue
1 parent 7f58b18 commit 1c2318d

31 files changed

+69
-29
lines changed

src/compiler/moduleNameResolver.ts

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -549,10 +549,18 @@ export function resolveTypeReferenceDirective(typeReferenceDirectiveName: string
549549
}
550550
return firstDefined(typeRoots, typeRoot => {
551551
const candidate = combinePaths(typeRoot, typeReferenceDirectiveName);
552-
const candidateDirectory = getDirectoryPath(candidate);
553-
const directoryExists = directoryProbablyExists(candidateDirectory, host);
552+
const directoryExists = directoryProbablyExists(typeRoot, host);
554553
if (!directoryExists && traceEnabled) {
555-
trace(host, Diagnostics.Directory_0_does_not_exist_skipping_all_lookups_in_it, candidateDirectory);
554+
trace(host, Diagnostics.Directory_0_does_not_exist_skipping_all_lookups_in_it, typeRoot);
555+
}
556+
if (options.typeRoots) {
557+
// Custom typeRoots resolve as file or directory just like we do modules
558+
const resolvedFromFile = loadModuleFromFile(Extensions.Declaration, candidate, !directoryExists, moduleResolutionState);
559+
if (resolvedFromFile) {
560+
const packageDirectory = parseNodeModuleFromPath(resolvedFromFile.path);
561+
const packageInfo = packageDirectory ? getPackageJsonInfo(packageDirectory, /*onlyRecordFailures*/ false, moduleResolutionState) : undefined;
562+
return resolvedTypeScriptOnly(withPackageId(packageInfo, resolvedFromFile));
563+
}
556564
}
557565
return resolvedTypeScriptOnly(
558566
loadNodeModuleFromDirectory(Extensions.Declaration, candidate,

tests/baselines/reference/library-reference-1.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'jquery', containing file '/src/consumer.ts', root directory 'types'. ========",
33
"Resolving with primary search path 'types'.",
4+
"File 'types/jquery.d.ts' does not exist.",
45
"File 'types/jquery/package.json' does not exist.",
56
"File 'types/jquery/index.d.ts' exist - use it as a name resolution result.",
67
"Resolving real path for 'types/jquery/index.d.ts', result '/src/types/jquery/index.d.ts'.",

tests/baselines/reference/library-reference-10.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'jquery', containing file '/foo/consumer.ts', root directory './types'. ========",
33
"Resolving with primary search path './types'.",
4+
"File './types/jquery.d.ts' does not exist.",
45
"Found 'package.json' at './types/jquery/package.json'.",
56
"'package.json' does not have a 'typesVersions' field.",
67
"'package.json' has 'typings' field 'jquery.d.ts' that references 'types/jquery/jquery.d.ts'.",

tests/baselines/reference/library-reference-13.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'jquery', containing file '/a/__inferred type names__.ts', root directory '/a/types'. ========",
33
"Resolving with primary search path '/a/types'.",
4+
"File '/a/types/jquery.d.ts' does not exist.",
45
"File '/a/types/jquery/package.json' does not exist.",
56
"File '/a/types/jquery/index.d.ts' exist - use it as a name resolution result.",
67
"Resolving real path for '/a/types/jquery/index.d.ts', result '/a/types/jquery/index.d.ts'.",

tests/baselines/reference/library-reference-14.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'jquery', containing file '/a/__inferred type names__.ts', root directory '/a/types'. ========",
33
"Resolving with primary search path '/a/types'.",
4+
"File '/a/types/jquery.d.ts' does not exist.",
45
"File '/a/types/jquery/package.json' does not exist.",
56
"File '/a/types/jquery/index.d.ts' exist - use it as a name resolution result.",
67
"Resolving real path for '/a/types/jquery/index.d.ts', result '/a/types/jquery/index.d.ts'.",

tests/baselines/reference/library-reference-15.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'jquery', containing file '/a/__inferred type names__.ts', root directory 'types'. ========",
33
"Resolving with primary search path 'types'.",
4+
"File 'types/jquery.d.ts' does not exist.",
45
"File 'types/jquery/package.json' does not exist.",
56
"File 'types/jquery/index.d.ts' exist - use it as a name resolution result.",
67
"Resolving real path for 'types/jquery/index.d.ts', result '/a/types/jquery/index.d.ts'.",

tests/baselines/reference/library-reference-2.trace.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'jquery', containing file '/consumer.ts', root directory '/types'. ========",
33
"Resolving with primary search path '/types'.",
4+
"File '/types/jquery.d.ts' does not exist.",
45
"Found 'package.json' at '/types/jquery/package.json'.",
56
"'package.json' does not have a 'typesVersions' field.",
67
"'package.json' does not have a 'typings' field.",
@@ -10,6 +11,7 @@
1011
"======== Type reference directive 'jquery' was successfully resolved to '/types/jquery/jquery.d.ts', primary: true. ========",
1112
"======== Resolving type reference directive 'jquery', containing file '/test/__inferred type names__.ts', root directory '/types'. ========",
1213
"Resolving with primary search path '/types'.",
14+
"File '/types/jquery.d.ts' does not exist.",
1315
"File '/types/jquery/package.json' exists according to earlier cached lookups.",
1416
"'package.json' does not have a 'typings' field.",
1517
"'package.json' has 'types' field 'jquery.d.ts' that references '/types/jquery/jquery.d.ts'.",

tests/baselines/reference/library-reference-4.trace.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'foo', containing file '/src/root.ts', root directory '/src'. ========",
33
"Resolving with primary search path '/src'.",
4+
"File '/src/foo.d.ts' does not exist.",
45
"Looking up in 'node_modules' folder, initial location '/src'.",
56
"Directory '/src/node_modules' does not exist, skipping all lookups in it.",
67
"File '/node_modules/foo/package.json' does not exist.",
@@ -10,6 +11,7 @@
1011
"======== Type reference directive 'foo' was successfully resolved to '/node_modules/foo/index.d.ts', primary: false. ========",
1112
"======== Resolving type reference directive 'bar', containing file '/src/root.ts', root directory '/src'. ========",
1213
"Resolving with primary search path '/src'.",
14+
"File '/src/bar.d.ts' does not exist.",
1315
"Looking up in 'node_modules' folder, initial location '/src'.",
1416
"Directory '/src/node_modules' does not exist, skipping all lookups in it.",
1517
"File '/node_modules/bar/package.json' does not exist.",
@@ -19,6 +21,7 @@
1921
"======== Type reference directive 'bar' was successfully resolved to '/node_modules/bar/index.d.ts', primary: false. ========",
2022
"======== Resolving type reference directive 'alpha', containing file '/node_modules/foo/index.d.ts', root directory '/src'. ========",
2123
"Resolving with primary search path '/src'.",
24+
"File '/src/alpha.d.ts' does not exist.",
2225
"Looking up in 'node_modules' folder, initial location '/node_modules/foo'.",
2326
"File '/node_modules/foo/node_modules/alpha/package.json' does not exist.",
2427
"File '/node_modules/foo/node_modules/alpha.d.ts' does not exist.",
@@ -27,6 +30,7 @@
2730
"======== Type reference directive 'alpha' was successfully resolved to '/node_modules/foo/node_modules/alpha/index.d.ts', primary: false. ========",
2831
"======== Resolving type reference directive 'alpha', containing file '/node_modules/bar/index.d.ts', root directory '/src'. ========",
2932
"Resolving with primary search path '/src'.",
33+
"File '/src/alpha.d.ts' does not exist.",
3034
"Looking up in 'node_modules' folder, initial location '/node_modules/bar'.",
3135
"File '/node_modules/bar/node_modules/alpha/package.json' does not exist.",
3236
"File '/node_modules/bar/node_modules/alpha.d.ts' does not exist.",

tests/baselines/reference/library-reference-8.trace.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
[
22
"======== Resolving type reference directive 'alpha', containing file '/test/foo.ts', root directory '/test/types'. ========",
33
"Resolving with primary search path '/test/types'.",
4+
"File '/test/types/alpha.d.ts' does not exist.",
45
"File '/test/types/alpha/package.json' does not exist.",
56
"File '/test/types/alpha/index.d.ts' exist - use it as a name resolution result.",
67
"Resolving real path for '/test/types/alpha/index.d.ts', result '/test/types/alpha/index.d.ts'.",
78
"======== Type reference directive 'alpha' was successfully resolved to '/test/types/alpha/index.d.ts', primary: true. ========",
89
"======== Resolving type reference directive 'beta', containing file '/test/foo.ts', root directory '/test/types'. ========",
910
"Resolving with primary search path '/test/types'.",
11+
"File '/test/types/beta.d.ts' does not exist.",
1012
"File '/test/types/beta/package.json' does not exist.",
1113
"File '/test/types/beta/index.d.ts' exist - use it as a name resolution result.",
1214
"Resolving real path for '/test/types/beta/index.d.ts', result '/test/types/beta/index.d.ts'.",
1315
"======== Type reference directive 'beta' was successfully resolved to '/test/types/beta/index.d.ts', primary: true. ========",
1416
"======== Resolving type reference directive 'beta', containing file '/test/types/alpha/index.d.ts', root directory '/test/types'. ========",
1517
"Resolving with primary search path '/test/types'.",
18+
"File '/test/types/beta.d.ts' does not exist.",
1619
"File '/test/types/beta/package.json' does not exist according to earlier cached lookups.",
1720
"File '/test/types/beta/index.d.ts' exist - use it as a name resolution result.",
1821
"Resolving real path for '/test/types/beta/index.d.ts', result '/test/types/beta/index.d.ts'.",
1922
"======== Type reference directive 'beta' was successfully resolved to '/test/types/beta/index.d.ts', primary: true. ========",
2023
"======== Resolving type reference directive 'alpha', containing file '/test/types/beta/index.d.ts', root directory '/test/types'. ========",
2124
"Resolving with primary search path '/test/types'.",
25+
"File '/test/types/alpha.d.ts' does not exist.",
2226
"File '/test/types/alpha/package.json' does not exist according to earlier cached lookups.",
2327
"File '/test/types/alpha/index.d.ts' exist - use it as a name resolution result.",
2428
"Resolving real path for '/test/types/alpha/index.d.ts', result '/test/types/alpha/index.d.ts'.",

tests/baselines/reference/library-reference-scoped-packages.trace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[
22
"======== Resolving type reference directive '@beep/boop', containing file '/a.ts', root directory 'types'. ========",
33
"Resolving with primary search path 'types'.",
4-
"Directory 'types/@beep' does not exist, skipping all lookups in it.",
4+
"Directory 'types' does not exist, skipping all lookups in it.",
55
"Looking up in 'node_modules' folder, initial location '/'.",
66
"Scoped package detected, looking in 'beep__boop'",
77
"File '/node_modules/@types/beep__boop/package.json' does not exist.",

tests/baselines/reference/moduleResolution/type-reference-from-primary-location.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Resolution:: {
1212
"isExternalLibraryImport": false
1313
},
1414
"failedLookupLocations": [
15+
"/root/src/types/lib.d.ts",
1516
"/root/src/types/lib/package.json"
1617
],
1718
"affectingLocations": [],
@@ -34,7 +35,9 @@ Resolution:: {
3435
"resolvedFileName": "/root/src/types/lib/typings/lib.d.ts",
3536
"isExternalLibraryImport": false
3637
},
37-
"failedLookupLocations": [],
38+
"failedLookupLocations": [
39+
"/root/src/types/lib.d.ts"
40+
],
3841
"affectingLocations": [
3942
"/root/src/types/lib/package.json"
4043
],
@@ -55,6 +58,7 @@ Resolution:: {
5558
"isExternalLibraryImport": true
5659
},
5760
"failedLookupLocations": [
61+
"/root/src/types/lib.d.ts",
5862
"/root/src/types/lib/package.json",
5963
"/root/src/types/lib/index.d.ts",
6064
"/root/src/node_modules/lib/package.json",
@@ -81,6 +85,7 @@ Resolution:: {
8185
"isExternalLibraryImport": true
8286
},
8387
"failedLookupLocations": [
88+
"/root/src/types/lib.d.ts",
8489
"/root/src/types/lib/package.json",
8590
"/root/src/types/lib/index.d.ts",
8691
"/root/src/node_modules/lib.d.ts"
@@ -105,6 +110,7 @@ Resolution:: {
105110
"isExternalLibraryImport": true
106111
},
107112
"failedLookupLocations": [
113+
"/root/src/types/lib.d.ts",
108114
"/root/src/types/lib/package.json",
109115
"/root/src/types/lib/index.d.ts",
110116
"/root/src/node_modules/lib/package.json",
@@ -134,6 +140,7 @@ Resolution:: {
134140
"isExternalLibraryImport": true
135141
},
136142
"failedLookupLocations": [
143+
"/root/src/types/lib.d.ts",
137144
"/root/src/types/lib/package.json",
138145
"/root/src/types/lib/index.d.ts",
139146
"/root/src/node_modules/lib/package.json",

tests/baselines/reference/moduleResolution/type-reference-from-secondary-location.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Resolution:: {
1212
"isExternalLibraryImport": true
1313
},
1414
"failedLookupLocations": [
15+
"/root/src/types/lib.d.ts",
1516
"/root/src/types/lib/package.json",
1617
"/root/src/types/lib/index.d.ts",
1718
"/root/src/node_modules/lib/package.json",
@@ -40,6 +41,7 @@ Resolution:: {
4041
"isExternalLibraryImport": true
4142
},
4243
"failedLookupLocations": [
44+
"/root/src/types/lib.d.ts",
4345
"/root/src/types/lib/package.json",
4446
"/root/src/types/lib/index.d.ts",
4547
"/root/src/node_modules/lib/package.json",
@@ -72,6 +74,7 @@ Resolution:: {
7274
"isExternalLibraryImport": true
7375
},
7476
"failedLookupLocations": [
77+
"/root/src/types/lib.d.ts",
7578
"/root/src/types/lib/package.json",
7679
"/root/src/types/lib/index.d.ts",
7780
"/root/src/node_modules/lib/package.json",
@@ -102,6 +105,7 @@ Resolution:: {
102105
"isExternalLibraryImport": true
103106
},
104107
"failedLookupLocations": [
108+
"/root/src/types/lib.d.ts",
105109
"/root/src/types/lib/package.json",
106110
"/root/src/types/lib/index.d.ts",
107111
"/root/src/node_modules/lib/package.json",
@@ -137,6 +141,7 @@ Resolution:: {
137141
"isExternalLibraryImport": true
138142
},
139143
"failedLookupLocations": [
144+
"/root/src/types/lib.d.ts",
140145
"/root/src/types/lib/package.json",
141146
"/root/src/types/lib/index.d.ts",
142147
"/root/src/node_modules/lib/package.json",

tests/baselines/reference/moduleResolution/type-reference-overrides-secondary-location.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Resolution:: {
1515
"isExternalLibraryImport": false
1616
},
1717
"failedLookupLocations": [
18+
"/root/src/types/lib.d.ts",
1819
"/root/src/types/lib/package.json"
1920
],
2021
"affectingLocations": [],

tests/baselines/reference/tsbuild/moduleResolution/type-reference-resolution-uses-correct-options-for-different-resolution-options-referenced-project.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ Output::
4646

4747
======== Resolving type reference directive 'sometype', containing file '/src/packages/__inferred type names__.ts', root directory '/src/packages/typeroot1'. ========
4848
Resolving with primary search path '/src/packages/typeroot1'.
49+
File '/src/packages/typeroot1/sometype.d.ts' does not exist.
4950
File '/src/packages/typeroot1/sometype/package.json' does not exist.
5051
File '/src/packages/typeroot1/sometype/index.d.ts' exist - use it as a name resolution result.
5152
Resolving real path for '/src/packages/typeroot1/sometype/index.d.ts', result '/src/packages/typeroot1/sometype/index.d.ts'.
@@ -56,6 +57,7 @@ Resolving real path for '/src/packages/typeroot1/sometype/index.d.ts', result '/
5657

5758
======== Resolving type reference directive 'sometype', containing file '/src/packages/__inferred type names__.ts', root directory '/src/packages/typeroot2'. ========
5859
Resolving with primary search path '/src/packages/typeroot2'.
60+
File '/src/packages/typeroot2/sometype.d.ts' does not exist.
5961
File '/src/packages/typeroot2/sometype/package.json' does not exist.
6062
File '/src/packages/typeroot2/sometype/index.d.ts' exist - use it as a name resolution result.
6163
Resolving real path for '/src/packages/typeroot2/sometype/index.d.ts', result '/src/packages/typeroot2/sometype/index.d.ts'.

tests/baselines/reference/typeReferenceDirectiveWithTypeAsFile.errors.txt

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
=== /a.ts ===
2-
32
a;
3+
>a : Symbol(a, Decl(phaser.d.ts, 0, 13))
4+
5+
=== /node_modules/phaser/types/phaser.d.ts ===
6+
declare const a: number;
7+
>a : Symbol(a, Decl(phaser.d.ts, 0, 13))
48

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
[
22
"======== Resolving type reference directive 'phaser', containing file '/__inferred type names__.ts', root directory '/node_modules/phaser/types'. ========",
33
"Resolving with primary search path '/node_modules/phaser/types'.",
4-
"Looking up in 'node_modules' folder, initial location '/'.",
4+
"File '/node_modules/phaser/types/phaser.d.ts' exist - use it as a name resolution result.",
55
"File '/node_modules/phaser/package.json' does not exist.",
6-
"File '/node_modules/phaser.d.ts' does not exist.",
7-
"File '/node_modules/phaser/index.d.ts' does not exist.",
8-
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
9-
"======== Type reference directive 'phaser' was not resolved. ========"
6+
"Resolving real path for '/node_modules/phaser/types/phaser.d.ts', result '/node_modules/phaser/types/phaser.d.ts'.",
7+
"======== Type reference directive 'phaser' was successfully resolved to '/node_modules/phaser/types/phaser.d.ts', primary: true. ========"
108
]
Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
=== /a.ts ===
22
a;
3-
>a : any
3+
>a : number
4+
5+
=== /node_modules/phaser/types/phaser.d.ts ===
6+
declare const a: number;
7+
>a : number
48

tests/baselines/reference/typeReferenceDirectives1.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'lib', containing file '/app.ts', root directory '/types'. ========",
33
"Resolving with primary search path '/types'.",
4+
"File '/types/lib.d.ts' does not exist.",
45
"File '/types/lib/package.json' does not exist.",
56
"File '/types/lib/index.d.ts' exist - use it as a name resolution result.",
67
"Resolving real path for '/types/lib/index.d.ts', result '/types/lib/index.d.ts'.",

tests/baselines/reference/typeReferenceDirectives10.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'lib', containing file '/app.ts', root directory '/types'. ========",
33
"Resolving with primary search path '/types'.",
4+
"File '/types/lib.d.ts' does not exist.",
45
"File '/types/lib/package.json' does not exist.",
56
"File '/types/lib/index.d.ts' exist - use it as a name resolution result.",
67
"Resolving real path for '/types/lib/index.d.ts', result '/types/lib/index.d.ts'.",

tests/baselines/reference/typeReferenceDirectives11.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"======== Module name './mod1' was successfully resolved to '/mod1.ts'. ========",
77
"======== Resolving type reference directive 'lib', containing file '/__inferred type names__.ts', root directory '/types'. ========",
88
"Resolving with primary search path '/types'.",
9+
"File '/types/lib.d.ts' does not exist.",
910
"File '/types/lib/package.json' does not exist.",
1011
"File '/types/lib/index.d.ts' exist - use it as a name resolution result.",
1112
"Resolving real path for '/types/lib/index.d.ts', result '/types/lib/index.d.ts'.",

tests/baselines/reference/typeReferenceDirectives12.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"======== Module name './mod1' was successfully resolved to '/mod1.ts'. ========",
1212
"======== Resolving type reference directive 'lib', containing file '/mod1.ts', root directory '/types'. ========",
1313
"Resolving with primary search path '/types'.",
14+
"File '/types/lib.d.ts' does not exist.",
1415
"File '/types/lib/package.json' does not exist.",
1516
"File '/types/lib/index.d.ts' exist - use it as a name resolution result.",
1617
"Resolving real path for '/types/lib/index.d.ts', result '/types/lib/index.d.ts'.",

tests/baselines/reference/typeReferenceDirectives13.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'lib', containing file '/app.ts', root directory '/types'. ========",
33
"Resolving with primary search path '/types'.",
4+
"File '/types/lib.d.ts' does not exist.",
45
"File '/types/lib/package.json' does not exist.",
56
"File '/types/lib/index.d.ts' exist - use it as a name resolution result.",
67
"Resolving real path for '/types/lib/index.d.ts', result '/types/lib/index.d.ts'.",

tests/baselines/reference/typeReferenceDirectives2.trace.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
"======== Resolving type reference directive 'lib', containing file '/__inferred type names__.ts', root directory '/types'. ========",
33
"Resolving with primary search path '/types'.",
4+
"File '/types/lib.d.ts' does not exist.",
45
"File '/types/lib/package.json' does not exist.",
56
"File '/types/lib/index.d.ts' exist - use it as a name resolution result.",
67
"Resolving real path for '/types/lib/index.d.ts', result '/types/lib/index.d.ts'.",

0 commit comments

Comments
 (0)