svelte-ux
Version:
- Increment version in `package.json` and commit as `Version bump to x.y.z` - `npm run publish`
25 lines (24 loc) • 672 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import { FadeParams } from 'svelte/transition';
declare const __propDef: {
props: {
[x: string]: any;
blur?: boolean;
portal?: boolean;
fadeParams?: FadeParams;
};
events: {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type BackdropProps = typeof __propDef.props;
export type BackdropEvents = typeof __propDef.events;
export type BackdropSlots = typeof __propDef.slots;
export default class Backdrop extends SvelteComponentTyped<BackdropProps, BackdropEvents, BackdropSlots> {
}
export {};