datapack-manager
Version:
Manage your Minecraft datapacks
14 lines (13 loc) • 412 B
TypeScript
import { Arguments, Argv } from "yargs";
declare type Options = Arguments<{
pack: string;
world: string;
}>;
export declare const command: string[];
export declare const desc = "Uninstall a datapack";
export declare function builder(yargs: Argv): Argv<Arguments<{
pack: string;
world: string;
}>>;
export declare function handler({ pack, world }: Options): Promise<void>;
export {};