@sorens/artist-svelte
Version:
an opinionated and clean UI framework for SvelteKit with theme support built-in
31 lines (30 loc) • 1.05 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { transitionAction, transitionConfig, useAction } from '../../types/global';
import type { ColorProp } from '../../types/components/props';
declare const __propDef: {
props: {
color?: ColorProp | 'transparent';
overlayBlur?: boolean;
transition?: transitionAction;
transitionConfig?: transitionConfig;
useAction?: useAction<HTMLElement>;
class?: string | undefined;
};
events: {
click: MouseEvent;
dblclick: MouseEvent;
mouseenter: MouseEvent;
mouseleave: MouseEvent;
mouseover: MouseEvent;
focus: FocusEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type BackdropProps = typeof __propDef.props;
export declare type BackdropEvents = typeof __propDef.events;
export declare type BackdropSlots = typeof __propDef.slots;
export default class Backdrop extends SvelteComponentTyped<BackdropProps, BackdropEvents, BackdropSlots> {
}
export {};