Remove trailing whitespaces

This commit is contained in:
Aya Morisawa
2016-01-27 20:17:35 +09:00
parent d6c51c607b
commit 48f20e97bf
22 changed files with 209 additions and 210 deletions
+4 -4
View File
@@ -9,7 +9,7 @@ declare module "tmp" {
interface Options extends SimpleOptions {
mode?: number;
}
interface SimpleOptions {
prefix?: string;
postfix?: string;
@@ -19,7 +19,7 @@ declare module "tmp" {
keep?: boolean;
unsafeCleanup?: boolean;
}
interface SynchrounousResult {
name: string;
fd: number;
@@ -28,9 +28,9 @@ declare module "tmp" {
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;