import { ILeaderboardReward, UserPropertiesKey } from '../../entities'; export interface ILeaderboardConfigCreateDTO { tierProperty?: UserPropertiesKey; scoreProperty: UserPropertiesKey; rotationIntervalInMinutes?: number; scoreLabel: string; onClickRedirect?: string; firstActionAt?: Date | string; rewards?: ILeaderboardReward[]; }