This commit is contained in:
@ -1,4 +1,4 @@
|
||||
import { McUtilsAPIError } from "../types/error";
|
||||
import {McUtilsAPIError} from "../types/error";
|
||||
|
||||
export default class WebRequest {
|
||||
/**
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { CachedEndpointStatus } from "types/mojang/endpoint-status";
|
||||
import { API_ENDPOINT } from "..";
|
||||
import {CachedEndpointStatus} from "types/mojang/endpoint-status";
|
||||
import {API_ENDPOINT} from "..";
|
||||
import WebRequest from "../common/WebRequest";
|
||||
|
||||
const endpointStatusEndpoint = API_ENDPOINT + "/mojang/status";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { API_ENDPOINT, CachedPlayer, CachedUsernameToUuid } from "..";
|
||||
import {API_ENDPOINT, CachedPlayer, CachedUsernameToUuid} from "..";
|
||||
import WebRequest from "../common/WebRequest";
|
||||
|
||||
const playerEndpoint = API_ENDPOINT + "/player/{id}";
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { API_ENDPOINT, CachedBedrockMinecraftServer, CachedJavaMinecraftServer } from "..";
|
||||
import {API_ENDPOINT, CachedBedrockMinecraftServer, CachedJavaMinecraftServer} from "..";
|
||||
import WebRequest from "../common/WebRequest";
|
||||
import { BlockedStatus } from "../types/server/blocked-status";
|
||||
import { ServerPlatform } from "../types/server/platform";
|
||||
import {BlockedStatus} from "../types/server/blocked-status";
|
||||
import {ServerPlatform} from "../types/server/platform";
|
||||
|
||||
const serverEndpoint = API_ENDPOINT + "/server/{platform}/{hostname}";
|
||||
const serverIconEndpoint = API_ENDPOINT + "/server/icon/{hostname}";
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { Status } from "../status";
|
||||
import {Status} from "../status";
|
||||
import {Cache} from "../cache";
|
||||
|
||||
export interface CachedEndpointStatus extends Cache, EndpointStatus {
|
||||
/**
|
||||
|
@ -1,3 +1,5 @@
|
||||
import {Cache} from "../cache";
|
||||
|
||||
export interface CachedPlayer extends Cache, Player {}
|
||||
|
||||
type Player = {
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { MinecraftServer } from "../server";
|
||||
import {MinecraftServer} from "../server";
|
||||
import {Cache} from "../../cache";
|
||||
|
||||
export interface CachedBedrockMinecraftServer extends Cache, BedrockMinecraftServer {}
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
import { MinecraftServer } from "../server";
|
||||
import {MinecraftServer} from "../server";
|
||||
import {Cache} from "../../cache";
|
||||
|
||||
export interface CachedJavaMinecraftServer extends Cache, JavaMinecraftServer {}
|
||||
|
||||
|
Reference in New Issue
Block a user