myncraftjs
Version:
Simple minecraft bot package extends from mineflayer
19 lines (18 loc) • 367 B
TypeScript
export type ExtraText = {
color?: string | {
value: string;
};
bold?: boolean | {
value: boolean;
};
text: string | {
value: string;
};
extra?: ExtraText[] | {
value: {
value: ExtraText[];
};
};
value?: ExtraText[];
};
export declare function getExtra(extra: ExtraText): string;