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.

12 lines (11 loc) 345 B
interface Props { props: { url: string | undefined; image: string | undefined; title: string | undefined; description: string | undefined; }; } declare const ShootmailEmbed: import("svelte").Component<Props, {}, "">; type ShootmailEmbed = ReturnType<typeof ShootmailEmbed>; export default ShootmailEmbed;