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

23 lines (22 loc) 728 B
import { SvelteComponentTyped } from "svelte"; import type { missingValueType } from '../types'; import { VariableInstanceModel } from '../types'; declare const __propDef: { props: { variables?: VariableInstanceModel[]; missingValues?: missingValueType[]; data: string[][]; dataExist?: boolean; valid?: boolean; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type VariablesProps = typeof __propDef.props; export type VariablesEvents = typeof __propDef.events; export type VariablesSlots = typeof __propDef.slots; export default class Variables extends SvelteComponentTyped<VariablesProps, VariablesEvents, VariablesSlots> { } export {};