import type { AVATAR_HRIDS, AVATAR_OUTFIT_HRIDS } from './constants.ts'; export type AvatarHrid = (typeof AVATAR_HRIDS)[number]; export interface Avatar { hrid: AvatarHrid; isSeasonal: boolean; seasonStartMonth: number; seasonStartDay: number; seasonEndMonth: number; seasonEndDay: number; cowbellCost: number; sortIndex: number; } export type AvatarOutfitHrid = (typeof AVATAR_OUTFIT_HRIDS)[number]; export interface AvatarOutfit { hrid: AvatarOutfitHrid; isSeasonal: boolean; seasonStartMonth: number; seasonStartDay: number; seasonEndMonth: number; seasonEndDay: number; cowbellCost: number; sortIndex: number; } //# sourceMappingURL=types.d.ts.map