UNPKG

dax

Version:

Cross platform shell tools inspired by zx.

10 lines 375 B
import type { CommandContext } from "../commandHandler.js"; import type { ExecuteResult } from "../result.js"; export declare function mkdirCommand(context: CommandContext): Promise<ExecuteResult>; interface MkdirFlags { parents: boolean; paths: string[]; } export declare function parseArgs(args: string[]): MkdirFlags; export {}; //# sourceMappingURL=mkdir.d.ts.map