mirror of
https://github.com/LucasVbr/LucasVbr.git
synced 2026-05-13 17:11:52 +00:00
13 lines
304 B
TypeScript
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; |