@throw-out-error/minecraft-mcfunction
Version:
A simple way to create your mcfunction files using Typescript syntax.
12 lines (11 loc) • 344 B
TypeScript
import { Command } from '../';
import { Selector } from '../../arguments';
export declare class KillCommand extends Command<'kill', [Selector]> {
constructor(target: Selector);
}
export declare function kill(target: Selector): KillCommand;
declare module '../' {
interface CommandContext {
kill: typeof kill;
}
}