badgeAPI/types/badge.d.ts
2025-04-19 11:58:49 -04:00

11 lines
183 B
TypeScript

type Badge = {
tooltip: string;
badge: string;
};
type BadgeResult = Badge[] | Record<string, Badge[]>;
interface FetchBadgesOptions {
nocache?: boolean;
separated?: boolean;
}