Files
LucasVbr/models/BadgeModel.ts
T
2023-05-06 14:01:38 +02:00

13 lines
304 B
TypeScript

type BadgeModel = {
label?: string,
message?: string,
color?: string,
logo?: string,
style: "plastic" | "flat" | "flat-square" | "for-the-badge" | "social",
logoColor?: string,
logoWidth?: number,
link?: string,
labelColor?: string,
cacheSeconds?: number,
}
export default BadgeModel;