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.

10 lines (9 loc) 254 B
interface Props { episodeUrl: string; height?: string; width?: string; disable_observer?: boolean; } declare const AnchorFm: import("svelte").Component<Props, {}, "">; type AnchorFm = ReturnType<typeof AnchorFm>; export default AnchorFm;