forked from creations/badgeAPI
11 lines
183 B
TypeScript
11 lines
183 B
TypeScript
type Badge = {
|
|
tooltip: string;
|
|
badge: string;
|
|
};
|
|
|
|
type BadgeResult = Badge[] | Record<string, Badge[]>;
|
|
|
|
interface FetchBadgesOptions {
|
|
nocache?: boolean;
|
|
separated?: boolean;
|
|
}
|