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) 192 B
import type { FAQ } from "../types"; interface Props { faqs?: FAQ[]; } declare const Faq: import("svelte").Component<Props, {}, "">; type Faq = ReturnType<typeof Faq>; export default Faq;