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).

31 lines (30 loc) 919 B
import { SvelteComponentTyped } from "svelte"; import { VariableInstanceModel, type missingValueType } from '../../types'; declare const __propDef: { props: { variable?: VariableInstanceModel; data?: string[]; index: number; missingValues: missingValueType[]; isValid?: boolean; last?: boolean; expand: boolean; blockDataRelevant?: boolean; }; events: { 'close{test}': CustomEvent<any>; 'var-change': CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: { options: {}; 'list-options': {}; }; }; export type VariableProps = typeof __propDef.props; export type VariableEvents = typeof __propDef.events; export type VariableSlots = typeof __propDef.slots; export default class Variable extends SvelteComponentTyped<VariableProps, VariableEvents, VariableSlots> { } export {};