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) 268 B
import type { ParagraphBlockObjectResponse } from "../types"; interface Props { paragraph: ParagraphBlockObjectResponse; } declare const Paragraph: import("svelte").Component<Props, {}, "">; type Paragraph = ReturnType<typeof Paragraph>; export default Paragraph;