Files
vscode/src/typings/lib.array-ext.d.ts
2016-06-16 17:35:13 +02:00

8 lines
426 B
TypeScript

/*---------------------------------------------------------------------------------------------
* 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: any): arg is Array<T>;
}