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

20 lines (19 loc) 646 B
import { SvelteComponentTyped } from "svelte"; import type { DataStructureCreationModel } from '../types'; declare const __propDef: { props: { model: DataStructureCreationModel; }; events: { back: CustomEvent<any>; } & { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type CreateStructureProps = typeof __propDef.props; export type CreateStructureEvents = typeof __propDef.events; export type CreateStructureSlots = typeof __propDef.slots; export default class CreateStructure extends SvelteComponentTyped<CreateStructureProps, CreateStructureEvents, CreateStructureSlots> { } export {};