diff options
Diffstat (limited to 'src/lib/components/post')
| -rw-r--r-- | src/lib/components/post/post.svelte | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/components/post/post.svelte b/src/lib/components/post/post.svelte index d909be1..535f7ac 100644 --- a/src/lib/components/post/post.svelte +++ b/src/lib/components/post/post.svelte @@ -1,12 +1,14 @@ <script lang="ts"> - export let post; + import type { Post } from '$lib/data/types'; + + export let post: Post; export let index = 0; export let count = 1; import { _ } from 'svelte-i18n'; import Glyph from '$lib/components/glyph/glyph.svelte'; - const timestampToISO = (timestamp) => new Date(timestamp).toISOString(); + const timestampToISO = (timestamp: number) => new Date(timestamp).toISOString(); </script> <aside |