import { MkDirOptions } from '../../../util'; import FileSystemCommand from '../../abstract/fileSystem'; export default class MkDirCommand extends FileSystemCommand { protected rootCmd: string; protected argsMapper: { mode: (mode: string | number) => string[]; parent: string; }; }