UNPKG

sveltekit-notion-blog

Version:

A plug and play library for setting up blogs in subdirectory or main directory in Sveltekit projects using Notion as CMS.

8 lines (7 loc) 234 B
import type { PageData } from "../../routes/$types"; interface Props { data: PageData; } declare const PostsList: import("svelte").Component<Props, {}, "">; type PostsList = ReturnType<typeof PostsList>; export default PostsList;