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