@smkit/ui
Version:
UI Kit of SberMarketing
19 lines (18 loc) • 510 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
edit?: null;
toggleFav: any;
isFav: any;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ActionsProps = typeof __propDef.props;
export type ActionsEvents = typeof __propDef.events;
export type ActionsSlots = typeof __propDef.slots;
export default class Actions extends SvelteComponentTyped<ActionsProps, ActionsEvents, ActionsSlots> {
}
export {};