aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Data
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-04-24 22:17:07 -0700
committerFuwn <[email protected]>2024-04-24 22:17:07 -0700
commit9603f422cac3bea7044c2dfe969c215ec9897dfa (patch)
tree01ef7acb95de8c6acf05176bb50badff2e4d4606 /src/lib/Data
parentfeat(list): setting to copy title (diff)
downloaddue.moe-9603f422cac3bea7044c2dfe969c215ec9897dfa.tar.xz
due.moe-9603f422cac3bea7044c2dfe969c215ec9897dfa.zip
fix(badges): awc badge tooltip
Diffstat (limited to 'src/lib/Data')
-rw-r--r--src/lib/Data/AWC.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/Data/AWC.ts b/src/lib/Data/AWC.ts
new file mode 100644
index 00000000..1237eaa0
--- /dev/null
+++ b/src/lib/Data/AWC.ts
@@ -0,0 +1,12 @@
+export interface AWCBadge {
+ link: string;
+ description: string;
+ image: string;
+ source: string;
+ designer: string;
+}
+
+export interface AWCBadgesGroup {
+ group: string;
+ badges: AWCBadge[];
+}