import type { SKILL_HRIDS } from './constants.ts'; export type SkillHrid = (typeof SKILL_HRIDS)[number]; export interface Skill { hrid: SkillHrid; name: string; isSkilling: boolean; isCombat: boolean; sortIndex: number; } //# sourceMappingURL=types.d.ts.map