platina-core
Version:
UI Kit of SberMarketing
19 lines (18 loc) • 514 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
edit?: null;
toggleFav?: null;
isFav?: null;
};
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 {};