UNPKG

papermc-cli

Version:

A CLI to help in creating PaperMC Minecraft servers.

11 lines (10 loc) 511 B
import { ScriptAnswers } from './prompt'; export declare const getUUID: (playername: string) => Promise<string>; export declare const getPlayerObjects: (names: string[]) => Promise<{ name: string; id: string; }[]>; export declare const genWhitelist: (names: string[] | null) => Promise<void>; export declare const genOps: (names: string[]) => Promise<void>; export declare const genEULA: (agree: boolean) => Promise<void>; export declare const getStartScript: (answers: ScriptAnswers) => Promise<void>;