@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).
19 lines (18 loc) • 611 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { DataStructureEditModel } from '../types';
declare const __propDef: {
props: {
model: DataStructureEditModel;
dataExist?: boolean;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type EditStructureProps = typeof __propDef.props;
export type EditStructureEvents = typeof __propDef.events;
export type EditStructureSlots = typeof __propDef.slots;
export default class EditStructure extends SvelteComponentTyped<EditStructureProps, EditStructureEvents, EditStructureSlots> {
}
export {};