// Type definitions for is-windows 1.0 // Project: https://github.com/jonschlinkert/is-windows // Definitions by: Mizunashi Mana // 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;