dax
Version:
Cross platform shell tools inspired by zx.
12 lines • 403 B
TypeScript
import type { CommandContext } from "../commandHandler.js";
import type { ExecuteResult } from "../result.js";
export declare function rmCommand(context: CommandContext): Promise<ExecuteResult>;
interface RmFlags {
force: boolean;
recursive: boolean;
dir: boolean;
paths: string[];
}
export declare function parseArgs(args: string[]): RmFlags;
export {};
//# sourceMappingURL=rm.d.ts.map