@skullandbonestools/snbdata
Version:
Inofficial data package for the Skull and Bones game by Ubisoft.
14 lines • 415 B
TypeScript
import eventsData from '../../data/events.json';
import { Season } from './seasons';
export declare class Event {
readonly id: string;
readonly seasons: Season[];
constructor(id: string, seasons: Season[]);
static loadEvents(): Record<string, Event>;
}
type Events = {
[K in keyof typeof eventsData]: Event;
};
export declare const Events: Events;
export {};
//# sourceMappingURL=events.d.ts.map