mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
11 lines
350 B
TypeScript
11 lines
350 B
TypeScript
// Type definitions for tempfile v1.1.0
|
|
// Project: https://github.com/sindresorhus/tempfile
|
|
// Definitions by: Sam Verschueren <https://github.com/SamVerschueren>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare module "tempfile" {
|
|
function tempfile(extension?: string): string;
|
|
module tempfile {}
|
|
export = tempfile;
|
|
}
|