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.

14 lines (13 loc) 427 B
interface Props { width?: string; height?: string; username?: string; title?: string; byline?: 'hidden' | 'visible' | 'default'; share?: 'hidden' | 'visible' | 'default'; style?: 'light' | 'dark' | 'hidden' | 'transparent' | 'default'; disable_observer?: boolean; } declare const Slides: import("svelte").Component<Props, {}, "">; type Slides = ReturnType<typeof Slides>; export default Slides;