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.

10 lines (9 loc) 264 B
interface Props { buzzsproutId: string; width?: string; height?: string; disable_observer?: boolean; } declare const Buzzsprout: import("svelte").Component<Props, {}, "">; type Buzzsprout = ReturnType<typeof Buzzsprout>; export default Buzzsprout;