diff options
Diffstat (limited to 'src/lib/Notification')
| -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; }; |