DefinitelyTyped/is-binary-path/index.d.ts
Daniel Rosenwasser f599b18306 Added declarations for 'is-binary-path'. (#13173)
* Added declarations for 'is-binary-path'.

* Ensure 'is-binary-path' returns a 'boolean'.
2016-12-08 14:12:51 -08:00

8 lines
332 B
TypeScript

// Type definitions for is-binary-path 2.0
// Project: https://github.com/sindresorhus/is-binary-path
// Definitions by: Daniel Rosenwasser <https://github.com/DanielRosenwasser>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = is_binary_path;
declare function is_binary_path(filepath: string): boolean;