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.
23 lines (22 loc) • 592 B
TypeScript
interface Props {
tiktokId: string;
width?: string;
height?: string;
controls?: boolean;
progress_bar?: boolean;
play_button?: boolean;
volume_control?: boolean;
fullscreen_button?: boolean;
timestamp?: boolean;
loop?: boolean;
autoplay?: boolean;
music_info?: boolean;
description?: boolean;
rel?: boolean;
native_context_menu?: boolean;
closed_caption?: boolean;
disable_observer?: boolean;
}
declare const Tiktok: import("svelte").Component<Props, {}, "">;
type Tiktok = ReturnType<typeof Tiktok>;
export default Tiktok;