diff options
| author | Fuwn <[email protected]> | 2026-01-29 19:19:50 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-01-29 19:19:50 -0800 |
| commit | 7e3c7c14d3e7940bc310784e852082504b2760ce (patch) | |
| tree | 3c7d0db5afbd53f50c9299d4da9c01485afb0968 /src/lib/Notification/Notification.svelte | |
| parent | feat(LandingHero): Make "See More" scroll past hero (diff) | |
| download | due.moe-7e3c7c14d3e7940bc310784e852082504b2760ce.tar.xz due.moe-7e3c7c14d3e7940bc310784e852082504b2760ce.zip | |
fix: Resolve all ESLint errors and warnings
Diffstat (limited to 'src/lib/Notification/Notification.svelte')
| -rw-r--r-- | src/lib/Notification/Notification.svelte | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/Notification/Notification.svelte b/src/lib/Notification/Notification.svelte index ec8d5be7..864d6568 100644 --- a/src/lib/Notification/Notification.svelte +++ b/src/lib/Notification/Notification.svelte @@ -1,8 +1,9 @@ <script lang="ts"> import settings from '$stores/settings'; import { onMount } from 'svelte'; + import type { Notification } from './store'; - export let notification: { [key: string]: any } = {}; + export let notification: Notification; export let onRemove: () => void = () => { return; }; |