wrench: Remove 'function' typo

That function is a typo that's not supposed to be there.
This commit is contained in:
Callum Rogers
2016-02-28 20:00:58 +00:00
parent b10e5ade29
commit dffecaae3a
+1 -1
View File
@@ -11,7 +11,7 @@ declare module "wrench" {
export function copyDirSyncRecursive(sourceDir: string, newDirLocation: string, opts?: { preserve?: boolean; }): void;
export function chmodSyncRecursive(sourceDir: string, filemode: number): void;
export function chownSyncRecursive(sourceDir: string, uid: number, gid: number): void;
export function mkdirSyncRecursivefunction(path: string, mode: number): void;
export function mkdirSyncRecursive(path: string, mode: number): void;
export function readdirRecursive(baseDir: string, fn: (err: Error, files: string[]) => void): void;
export function rmdirRecursive(path: string, fn: (err: Error) => void): void;