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.

12 lines (11 loc) 321 B
interface Props { soundcloudLink?: string; width?: string; height?: string; showVisual?: boolean; disable_observer?: boolean; iframe_styles?: string; } declare const SoundCloud: import("svelte").Component<Props, {}, "">; type SoundCloud = ReturnType<typeof SoundCloud>; export default SoundCloud;