UNPKG

@bexis2/bexis2-rpm-ui

Version:

Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).

21 lines (20 loc) 745 B
import { SvelteComponentTyped } from "svelte"; import type { templateListItemType } from "../../types"; declare const __propDef: { props: { list: templateListItemType[]; }; events: { selected: CustomEvent<any>; close: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type VariableTemplateSelectionProps = typeof __propDef.props; export type VariableTemplateSelectionEvents = typeof __propDef.events; export type VariableTemplateSelectionSlots = typeof __propDef.slots; export default class VariableTemplateSelection extends SvelteComponentTyped<VariableTemplateSelectionProps, VariableTemplateSelectionEvents, VariableTemplateSelectionSlots> { } export {};