mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
// Type definitions for tmp v0.0.28
|
||
// Project: https://www.npmjs.com/package/tmp
|
||
// Definitions by: Jared Klopper <https://github.com/optical>
|
||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||
|
||
declare module "tmp" {
|
||
|
||
namespace tmp {
|
||
interface Options extends SimpleOptions {
|
||
mode?: number;
|
||
}
|
||
|
||
interface SimpleOptions {
|
||
prefix?: string;
|
||
postfix?: string;
|
||
template?: string;
|
||
dir?: string;
|
||
tries?: number;
|
||
keep?: boolean;
|
||
unsafeCleanup?: boolean;
|
||
}
|
||
|
||
interface SynchrounousResult {
|
||
name: string;
|
||
fd: number;
|
||
removeCallback: () => void;
|
||
}
|
||
|
||
function file(callback: (err: any, path: string, fd: number, cleanupCallback: () => void) => void): void;
|
||
function file(config: Options, callback?: (err: any, path: string, fd: number, cleanupCallback: () => void) => void): void;
|
||
|
||
function fileSync(config?: Options): SynchrounousResult;
|
||
|
||
function dir(callback: (err: any, path: string, cleanupCallback: () => void) => void): void;
|
||
function dir(config: Options, callback?: (err: any, path: string, cleanupCallback: () => void) => void): void;
|
||
|
||
function dirSync(config?: Options): SynchrounousResult;
|
||
|
||
function tmpName(callback: (err: any, path: string) => void): void;
|
||
function tmpName(config: SimpleOptions, callback?: (err: any, path: string) => void): void;
|
||
|
||
function tmpNameSync(config?: SimpleOptions): string;
|
||
|
||
function setGracefulCleanup(): void;
|
||
}
|
||
|
||
export = tmp;
|
||
}
|