normalize line ending (CRLF -> LF)

This commit is contained in:
vvakame
2016-02-16 01:20:30 +09:00
parent bda9391b49
commit 4de74cb527
508 changed files with 79006 additions and 79006 deletions
+12 -12
View File
@@ -1,15 +1,15 @@
// Type definitions for mkpath v0.1.0
// Project: https://www.npmjs.com/package/mkpath
// Definitions by: Jared Klopper <https://github.com/optical>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module 'mkpath' {
module mkpath {
function sync(path: string, mode?: number): void;
}
function mkpath(path: string, callback?: (err: any) => void): void;
function mkpath(path: string, mode?: number, callback?: (err?: any) => void): void;
export = mkpath;
}
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module 'mkpath' {
module mkpath {
function sync(path: string, mode?: number): void;
}
function mkpath(path: string, callback?: (err: any) => void): void;
function mkpath(path: string, mode?: number, callback?: (err?: any) => void): void;
export = mkpath;
}