svelte-command-palette
Version:
#### Increase your productivity exponentially. 🚀🚀
19 lines (18 loc) • 598 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {};
events: {
KeyboardButtonClicked: CustomEvent<any>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export declare type KeyboardButtonProps = typeof __propDef.props;
export declare type KeyboardButtonEvents = typeof __propDef.events;
export declare type KeyboardButtonSlots = typeof __propDef.slots;
export default class KeyboardButton extends SvelteComponentTyped<KeyboardButtonProps, KeyboardButtonEvents, KeyboardButtonSlots> {
}
export {};