@skullandbonestools/snbdata
Version:
Inofficial data package for the Skull and Bones game by Ubisoft.
16 lines • 515 B
TypeScript
import seasonsData from "../../data/seasons.json";
export declare class Season {
readonly index: number;
readonly id: string;
readonly startDate: Date;
readonly endDate: Date;
readonly color: string;
constructor(index: number, id: string, startDate: Date, endDate: Date, color: string);
static loadSeasons(): Record<string, Season>;
}
type Seasons = {
[K in keyof typeof seasonsData]: Season;
};
export declare const Seasons: Seasons;
export {};
//# sourceMappingURL=seasons.d.ts.map