UNPKG

@geometrically/minecraft-motd-parser

Version:

Minecraft Server MOTD Parser, can convert to html, json, text.

20 lines (19 loc) 541 B
interface extraLibraryType { [key: string]: string; } interface motdJsonType { text: string | number; extra?: { color?: string; text?: string | number; bold?: boolean; strikethrough?: boolean; underlined?: boolean; obfuscated?: boolean; italic?: boolean; extra?: object[] | motdJsonType[]; }[]; translate?: string | number; [key: string]: string | boolean | number | object | Array<object> | undefined; } export type { extraLibraryType, motdJsonType };