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) 247 B
import type { CustomBlockObjectResponse } from "../notion/api"; interface Props { block: CustomBlockObjectResponse; } declare const Block: import("svelte").Component<Props, {}, "">; type Block = ReturnType<typeof Block>; export default Block;