oops, fix build error
Some checks failed
Deploy Lib / docker (ubuntu-latest, 2.44.0) (push) Failing after 52s

This commit is contained in:
Braydon 2024-04-14 16:38:41 -04:00
parent acae5dbcd6
commit 7ebeb39cc3
3 changed files with 3 additions and 2 deletions

@ -28,7 +28,7 @@ jobs:
# Install Dependencies
- name: Install Dependencies
run: bun install
run: bun install --frozen-lockfile
# Run Tests
- name: Run Tests

@ -1,3 +1,4 @@
import { MojangServerStatus } from "../types/mojang";
import type { CachedPlayer } from "../types/player";
import { Platform } from "../types/server";
import { CachedBedrockMinecraftServer } from "../types/server/bedrock-server";

@ -2,6 +2,6 @@
* Represents the status of
* a service provided by Mojang.
*/
type MojangServerStatus = {
export type MojangServerStatus = {
[key: string]: string;
};