aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Data/AWC.ts
blob: 1237eaa07b0300b7c0f7a44129227277d3f66e19 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export interface AWCBadge {
	link: string;
	description: string;
	image: string;
	source: string;
	designer: string;
}

export interface AWCBadgesGroup {
	group: string;
	badges: AWCBadge[];
}