mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
8 lines
280 B
TypeScript
8 lines
280 B
TypeScript
// Type definitions for is-array 1.0
|
|
// Project: https://github.com/retrofox/is-array
|
|
// Definitions by: Pine Mizune <https://github.com/pine>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export = isArray;
|
|
declare function isArray(val?: any): val is any[];
|