UNPKG

484 BTypeScriptView Raw
1// Type definitions for is-windows 1.0
2// Project: https://github.com/jonschlinkert/is-windows
3// Definitions by: Mizunashi Mana <https://github.com/mizunashi-mana>
4// ExE Boss <https://github.com/ExE-Boss>
5// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
6
7/**
8 * Returns `true` if the platform is windows.
9 */
10declare function isWindows(): boolean;
11
12// Export CJS function
13export = isWindows;
14
15// Export UMD namespace
16export as namespace isWindows;