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.

11 lines (10 loc) 267 B
interface Props { vimeoId?: string; autoPlay?: boolean; aspectRatio?: string; skipTo?: any; disable_observer?: boolean; } declare const Vimeo: import("svelte").Component<Props, {}, "">; type Vimeo = ReturnType<typeof Vimeo>; export default Vimeo;