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