fix motd type

This commit is contained in:
Lee 2024-04-14 21:30:16 +01:00
parent 4559663d96
commit a2e1f6fd0a
2 changed files with 4 additions and 4 deletions

@ -1,6 +1,6 @@
{
"name": "mcutils-library",
"version": "1.0.1",
"version": "1.0.2",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",

@ -34,17 +34,17 @@ type Motd = {
/**
* The raw MOTD.
*/
raw: string;
raw: string[];
/**
* The clean MOTD, without any colors.
*/
clean: string;
clean: string[];
/**
* The HTML MOTD, with HTML tags for colors.
*/
html: string;
html: string[];
};
type Players = {