diff options
| author | Fuwn <[email protected]> | 2024-04-24 22:17:07 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-04-24 22:17:07 -0700 |
| commit | 9603f422cac3bea7044c2dfe969c215ec9897dfa (patch) | |
| tree | 01ef7acb95de8c6acf05176bb50badff2e4d4606 /src/lib/Data | |
| parent | feat(list): setting to copy title (diff) | |
| download | due.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.ts | 12 |
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[]; +} |