summaryrefslogtreecommitdiff
path: root/cli/dts
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-12-16 08:46:32 -0800
committerGitHub <noreply@github.com>2020-12-16 11:46:32 -0500
commit63e0ab99a1757f5dbae0a5ec4ea11a037a47a29b (patch)
tree6fc08c83fce9dd72c310530ddb6effebca9ae7d5 /cli/dts
parent6984b63f2f3c8d0819fe2dced8252a81f3400ae7 (diff)
upgrade TypeScript to 4.1.3 (#8785)
Diffstat (limited to 'cli/dts')
-rw-r--r--cli/dts/lib.es5.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.es5.d.ts b/cli/dts/lib.es5.d.ts
index a7c35dbcf..31eb384cd 100644
--- a/cli/dts/lib.es5.d.ts
+++ b/cli/dts/lib.es5.d.ts
@@ -1396,7 +1396,7 @@ interface ArrayConstructor {
(arrayLength?: number): any[];
<T>(arrayLength: number): T[];
<T>(...items: T[]): T[];
- isArray<T>(arg: T | {}): arg is T extends readonly any[] ? (unknown extends T ? never : readonly any[]) : any[];
+ isArray(arg: any): arg is any[];
readonly prototype: any[];
}