UNPKG

@bexis2/bexis2-core-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) 517 B
import { SvelteComponent } from "svelte"; import type { linkType } from '../../models/Models'; declare const __propDef: { props: { links?: linkType[]; note: string; }; events: { [evt: string]: CustomEvent<any>; }; slots: {}; }; export type DocsProps = typeof __propDef.props; export type DocsEvents = typeof __propDef.events; export type DocsSlots = typeof __propDef.slots; export default class Docs extends SvelteComponent<DocsProps, DocsEvents, DocsSlots> { } export {};