UNPKG

@throw-out-error/minecraft-mcfunction

Version:

A simple way to create your mcfunction files using Typescript syntax.

11 lines (10 loc) 289 B
import { Command } from '../'; export declare class SayCommand extends Command<'say', [string]> { constructor(message: string); } export declare function say(message: string): SayCommand; declare module '../' { interface CommandContext { say: typeof say; } }