import { TouchOptions } from '../../../util'; import FileSystemCommand from '../../abstract/fileSystem'; export default class TouchCommand extends FileSystemCommand { protected rootCmd: string; protected argsMapper: { aTime: string; mTime: string; noCreate: string; symlink: string; date: (value: Date | string) => string[]; time: (value: Date | string) => string[]; reference: (value: string) => string[]; }; }