DefinitelyTyped/types/tempfile/index.d.ts
Dimitri Benin e1513dee76 [tempfile] add linting & enable strict null checks (#18852)
* [tempfile] add linting & enable strict null checks

* [tempfile] reintroduce namespace to support import * syntax to avoid a breaking change for users
2017-08-11 10:16:07 -07:00

11 lines
402 B
TypeScript

// Type definitions for tempfile 2.0
// Project: https://github.com/sindresorhus/tempfile
// Definitions by: Sam Verschueren <https://github.com/SamVerschueren>
// BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = tempfile;
declare function tempfile(extension?: string): string;
declare namespace tempfile {}