lol-constants
Version:
League of Legends constants, functions, and types. Provides a plathera of functions to easily convert between ID, Name, and Key for champions, items, summoner spells, and runes.
13 lines (12 loc) • 336 B
TypeScript
export declare const ItemSrTypes: {
readonly STARTER: 0;
readonly BASIC: 1;
readonly EPIC: 2;
readonly LEGENDARY: 3;
readonly TRINKET: 11;
readonly BOOTS: 12;
readonly CONSUMABLE: 13;
readonly NONSR: -1;
readonly UNKNOWN: -2;
};
export type ItemSrType = typeof ItemSrTypes[keyof typeof ItemSrTypes];