We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2387a67 commit 9eab8bbCopy full SHA for 9eab8bb
mkdirp.d.ts
@@ -0,0 +1,7 @@
1
+// https://github.com/substack/node-mkdirp
2
+
3
+declare module "mkdirp" {
4
+ export function(path: string, callback: (err: Error) => void): void;
5
+ export function(path: string, mode: number, callback: (err: Error) => void): void;
6
+ export function sync(path: string, mode: number): void;
7
+}
0 commit comments