UNPKG

fnbr

Version:

A library to interact with Epic Games' Fortnite HTTP and XMPP services

22 lines (21 loc) 636 B
import EpicgamesServerStatusIncident from './EpicgamesServerStatusIncident'; import type Client from '../Client'; /** * Represents an Epicgames server status */ declare class EpicgamesServerStatusScheduledMainteance extends EpicgamesServerStatusIncident { /** * The time the mainteance is scheduled for */ scheduledFor: Date; /** * The time the mainteance is scheduled until */ scheduledUntil: Date; /** * @param client The main client * @param data The server status data */ constructor(client: Client, data: any); } export default EpicgamesServerStatusScheduledMainteance;