UNPKG

@skullandbonestools/snbdata

Version:

Inofficial data package for the Skull and Bones game by Ubisoft.

14 lines 399 B
import setsData from '../../data/sets.json'; import { SetType } from '../types/SetProperties'; export declare class Set { readonly id: string; readonly type: SetType; constructor(id: string, type: SetType); static loadSets(): Record<string, Set>; } type Sets = { [K in keyof typeof setsData]: Set; }; export declare const Sets: Sets; export {}; //# sourceMappingURL=sets.d.ts.map