Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Pasero <benjpas@microsoft.com>2020-08-26 14:07:30 +0300
committerGitHub <noreply@github.com>2020-08-26 14:07:30 +0300
commitf922e8b7574608d7220d9c39d7f99edfc63c7b68 (patch)
treefc414337b5c2ca26887794bf4f3861f2b4c49ef4 /src/typings
parent0681925277df77878322d2ad789b746f462a08c9 (diff)
debt - remove lib.array-ext.d.ts and support Array.includes (fix #102566) (#105404)
Diffstat (limited to 'src/typings')
-rw-r--r--src/typings/lib.array-ext.d.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/typings/lib.array-ext.d.ts b/src/typings/lib.array-ext.d.ts
deleted file mode 100644
index 5a77b70a9f2..00000000000
--- a/src/typings/lib.array-ext.d.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-/*---------------------------------------------------------------------------------------------
- * Copyright (c) Microsoft Corporation. All rights reserved.
- * Licensed under the MIT License. See License.txt in the project root for license information.
- *--------------------------------------------------------------------------------------------*/
-
-interface ArrayConstructor {
- isArray<T>(arg: ReadonlyArray<T> | null | undefined): arg is ReadonlyArray<T>;
- isArray<T>(arg: Array<T> | null | undefined): arg is Array<T>;
- isArray(arg: any): arg is Array<any>;
- isArray<T>(arg: any): arg is Array<T>;
-} \ No newline at end of file