forked from public/fvtt-cthulhu-eternal
6 lines
401 B
TypeScript
6 lines
401 B
TypeScript
|
import { MkdirpOptions } from './opts-arg.js';
|
||
|
export declare const mkdirpNativeSync: (path: string, options?: MkdirpOptions) => string | void | undefined;
|
||
|
export declare const mkdirpNative: ((path: string, options?: MkdirpOptions) => Promise<string | void | undefined>) & {
|
||
|
sync: (path: string, options?: MkdirpOptions) => string | void | undefined;
|
||
|
};
|
||
|
//# sourceMappingURL=mkdirp-native.d.ts.map
|