@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).
18 lines (17 loc) • 640 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { listItemType } from '@bexis2/bexis2-core-ui';
declare const __propDef: {
props: {
list: listItemType[];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type ConstraintsDescriptionProps = typeof __propDef.props;
export type ConstraintsDescriptionEvents = typeof __propDef.events;
export type ConstraintsDescriptionSlots = typeof __propDef.slots;
export default class ConstraintsDescription extends SvelteComponentTyped<ConstraintsDescriptionProps, ConstraintsDescriptionEvents, ConstraintsDescriptionSlots> {
}
export {};