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