flowbite-svelte
Version:
Flowbite components for Svelte
30 lines (29 loc) • 855 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { Action } from 'svelte/action';
declare const __propDef: {
props: {
[x: string]: any;
tag?: string | undefined;
show: boolean;
use?: Action<HTMLElement, any> | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type WrapperProps = typeof __propDef.props;
export type WrapperEvents = typeof __propDef.events;
export type WrapperSlots = typeof __propDef.slots;
/**
* [Go to docs](https://flowbite-svelte.com/)
* ## Props
* @prop export let tag: string = 'div';
* @prop export let show: boolean;
* @prop export let use: Action<HTMLElement, any> = () => {};
*/
export default class Wrapper extends SvelteComponentTyped<WrapperProps, WrapperEvents, WrapperSlots> {
}
export {};