galeforce-tmp-sea
Version:
A customizable, promise-based, and command-oriented TypeScript library for the Riot Games API.
31 lines • 671 B
TypeScript
declare enum State {
DISABLED = "DISABLED",
HIDDEN = "HIDDEN",
ENABLED = "ENABLED",
ARCHIVED = "ARCHIVED"
}
declare enum Tracking {
LIFETIME = "LIFETIME",
SEASON = "SEASON"
}
interface NameDescription {
description: string;
name: string;
shortDescription: string;
}
export interface ChallengeConfigInfoDTO {
id: number;
localizedNames: {
[key: string]: NameDescription;
};
state: State;
tracking: Tracking;
startTimestamp: number;
endTimestamp: number;
leaderboard: boolean;
thresholds: {
[key: string]: number;
};
}
export {};
//# sourceMappingURL=challenge-config-info.d.ts.map