@types/is-windows
Version:
TypeScript definitions for is-windows
17 lines (13 loc) • 484 B
TypeScript
// Type definitions for is-windows 1.0
// Project: https://github.com/jonschlinkert/is-windows
// Definitions by: Mizunashi Mana <https://github.com/mizunashi-mana>
// ExE Boss <https://github.com/ExE-Boss>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* Returns `true` if the platform is windows.
*/
declare function isWindows(): boolean;
// Export CJS function
export = isWindows;
// Export UMD namespace
export as namespace isWindows;