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.
19 lines (18 loc) • 459 B
TypeScript
interface Props {
youTubeId?: string;
listId?: string;
index?: number;
autoPlay?: boolean;
aspectRatio?: string;
skipTo?: any;
disable_observer?: boolean;
iframe_styles?: string;
mute?: boolean;
controls?: boolean;
loop?: boolean;
modestBranding?: boolean;
rel?: boolean;
}
declare const YouTube: import("svelte").Component<Props, {}, "">;
type YouTube = ReturnType<typeof YouTube>;
export default YouTube;