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) 224 B
interface Props { reliveId?: string; width?: string; disable_observer?: boolean; } declare const Relive: import("svelte").Component<Props, {}, "">; type Relive = ReturnType<typeof Relive>; export default Relive;