@sorens/artist-svelte
Version:
an opinionated and clean UI framework for SvelteKit with theme support built-in
32 lines (31 loc) • 948 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { useAction } from '../../types/global';
import type { ColorProp } from '../../types/components/props';
declare const __propDef: {
props: {
color?: ColorProp;
shadow?: boolean;
fullWidth?: boolean;
useAction?: useAction<HTMLElement>;
class?: string | undefined;
};
events: {
click: MouseEvent;
dblclick: MouseEvent;
mouseenter: MouseEvent;
mouseleave: MouseEvent;
mouseover: MouseEvent;
focus: FocusEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type PaperProps = typeof __propDef.props;
export declare type PaperEvents = typeof __propDef.events;
export declare type PaperSlots = typeof __propDef.slots;
export default class Paper extends SvelteComponentTyped<PaperProps, PaperEvents, PaperSlots> {
}
export {};