flowbite-svelte
Version:
Flowbite components for Svelte
33 lines (32 loc) • 942 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
src: string;
type?: string | undefined;
trackSrc?: string | undefined;
srclang?: string | undefined;
label?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type VideoProps = typeof __propDef.props;
export type VideoEvents = typeof __propDef.events;
export type VideoSlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let src: string;
* @prop export let type: string = 'video/mp4';
* @prop export let trackSrc: string = '';
* @prop export let srclang: string = 'en';
* @prop export let label: string = 'english_captions';
*/
export default class Video extends SvelteComponentTyped<VideoProps, VideoEvents, VideoSlots> {
}
export {};