forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
temp.d.ts
43 lines (30 loc) · 1.77 KB
/
temp.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Type definitions for temp 0.8.3
// Project: https://www.npmjs.com/package/temp, https://github.com/bruce/node-temp
// Definitions by: Daniel Rosenwasser <https://github.com/DanielRosenwasser>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare module "temp" {
import * as temp from "temp";
import * as fs from "fs";
export interface AffixOptions {
prefix?: string;
suffix?: string;
dir?: string;
}
export var dir: string;
export function track(value?: boolean): typeof temp;
export function mkdir(affixes: string, callback?: (err: any, dirPath: string) => void): void;
export function mkdir(affixes: AffixOptions, callback?: (err: any, dirPath: string) => void): void;
export function mkdirSync(affixes: string): string;
export function mkdirSync(affixes: AffixOptions): string;
export function open(affixes: string, callback?: (err: any, result: {path: string, fd: number}) => void): void;
export function open(affixes: AffixOptions, callback?: (err: any, result: {path: string, fd: number}) => void): void;
export function openSync(affixes: string): { path: string, fd: number };
export function openSync(affixes: AffixOptions): { path: string, fd: number };
export function path(affixes: string, defaultPrefix?: string): string;
export function path(affixes: AffixOptions, defaultPrefix?: string): string;
export function cleanup(callback?: (result: boolean | {files: number, dirs?: number}) => void): void;
export function cleanupSync(): boolean | {files: number, dirs: number};
export function createWriteStream(affixes: string): fs.WriteStream;
export function createWriteStream(affixes: AffixOptions): fs.WriteStream;
}