platina-core
Version:
UI Kit of SberMarketing
32 lines (31 loc) • 820 B
TypeScript
/** @typedef {typeof __propDef.props} PopoverButtonProps */
/** @typedef {typeof __propDef.events} PopoverButtonEvents */
/** @typedef {typeof __propDef.slots} PopoverButtonSlots */
export default class PopoverButton extends SvelteComponentTyped<{
[x: string]: any;
}, {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
}, {
default: {};
}> {
}
export type PopoverButtonProps = typeof __propDef.props;
export type PopoverButtonEvents = typeof __propDef.events;
export type PopoverButtonSlots = typeof __propDef.slots;
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
};
events: {
click: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export {};