mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 05:27:30 +00:00
* [tempfile] add linting & enable strict null checks * [tempfile] reintroduce namespace to support import * syntax to avoid a breaking change for users
11 lines
402 B
TypeScript
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 {}
|