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