UNPKG

node-brawlstars

Version:

Javascript library to communicate with BrawlStars API

20 lines (19 loc) 479 B
import { Event } from '../interfaces'; export declare class ScheduledEvent { startTime: string; get startTimeDate(): Date; endTime: string; get endTimeDate(): Date; slotId: number; event: Event; constructor(raw: ScheduledEvent.Raw); } export declare namespace ScheduledEvent { interface Raw { startTime: string; endTime: string; slotId: number; event: Event; } function FromRaw(raw: Raw): ScheduledEvent; }