@bexis2/bexis2-core-ui
Version:
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
20 lines (19 loc) • 645 B
TypeScript
import { SvelteComponent } from "svelte";
import type { SelectedFacetGroup } from '../../models/Models';
declare const __propDef: {
props: {
group: SelectedFacetGroup;
handleApply: (group: SelectedFacetGroup) => {};
handleCancel: (groupName: string) => {};
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ShowMoreProps = typeof __propDef.props;
export type ShowMoreEvents = typeof __propDef.events;
export type ShowMoreSlots = typeof __propDef.slots;
export default class ShowMore extends SvelteComponent<ShowMoreProps, ShowMoreEvents, ShowMoreSlots> {
}
export {};