@mesh-tech/mesh-cli
Version:
CLI for Mesh platform development utilities
8 lines (7 loc) • 333 B
TypeScript
import { type CommonOpts } from "./common.js";
export declare function expandPathsToDeletions(repoFiles: string[], requested: string[]): string[];
export interface RmOpts extends CommonOpts {
message?: string;
dryRun?: boolean;
}
export declare function rmCommand(repo: string, paths: string[], opts: RmOpts): Promise<void>;