UNPKG

flowbite-svelte

Version:

Flowbite components for Svelte

28 lines (27 loc) 931 B
import { SvelteComponentTyped } from "svelte"; import type { HTMLImgAttributes } from 'svelte/elements'; import { type TransitionConfig } from 'svelte/transition'; import type { ParamsType } from '../types'; declare const __propDef: { props: { [x: string]: any; image: HTMLImgAttributes; transition?: (((node: HTMLElement, params: ParamsType) => TransitionConfig) | null) | undefined; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type SlideProps = typeof __propDef.props; export type SlideEvents = typeof __propDef.events; export type SlideSlots = typeof __propDef.slots; /** * [Go to docs](https://flowbite-svelte.com/) * ## Props * @prop export let image: HTMLImgAttributes; * @prop export let transition: TransitionFunc | null = null; */ export default class Slide extends SvelteComponentTyped<SlideProps, SlideEvents, SlideSlots> { } export {};