UNPKG

@j03fr0st/pubg-ts

Version:

A comprehensive TypeScript wrapper for the PUBG API

14 lines 377 B
export interface SeasonAttributes { startDate: string; endDate: string; } export interface SeasonData { id: string; attributes: SeasonAttributes; } export interface SeasonsData { [platform: string]: SeasonData[]; } export declare const SEASONS_DATA: SeasonsData; export type Platform = 'PC' | 'XBOX' | 'PS4' | 'Stadia'; //# sourceMappingURL=seasons.d.ts.map