mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
/**
|
|
* @fileoverview Recursive mkdir definitions.
|
|
* @license Apache-2.0
|
|
*/
|
|
|
|
interface Options {
|
|
mode?: number;
|
|
}
|
|
declare function mkdirp(path: string, options?: Options): string | null;
|
|
export = mkdirp;
|