UNPKG

sveltekit-embed

Version:

A collection of embed components for SvelteKit. Easily embed content from YouTube, Spotify, Vimeo, CodePen, and many more with performant, lazy-loaded components.

9 lines (8 loc) 208 B
interface Props { instance?: string; username?: string; tootId?: string; } declare const Toot: import("svelte").Component<Props, {}, "">; type Toot = ReturnType<typeof Toot>; export default Toot;