UNPKG

@daks.dev/svelte.sdk

Version:
11 lines (10 loc) 413 B
import type { HTMLVideoAttributes, HTMLSourceAttributes, HTMLTrackAttributes } from 'svelte/elements'; type Props = Omit<HTMLVideoAttributes, 'class'> & { class?: ClassName; sources?: HTMLSourceAttributes[]; traks?: HTMLTrackAttributes[]; loaded?: (x?: Event) => void; }; declare const Video: import("svelte").Component<Props, {}, "">; type Video = ReturnType<typeof Video>; export default Video;