@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) • 628 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { missingValueType } from './types';
declare const __propDef: {
props: {
list?: missingValueType[];
showTitle?: boolean;
disabled?: boolean;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type MissingValuesProps = typeof __propDef.props;
export type MissingValuesEvents = typeof __propDef.events;
export type MissingValuesSlots = typeof __propDef.slots;
export default class MissingValues extends SvelteComponentTyped<MissingValuesProps, MissingValuesEvents, MissingValuesSlots> {
}
export {};