@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) • 622 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { meaningListItemType } from '../../types';
declare const __propDef: {
props: {
list: meaningListItemType[];
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type MeaningsDescriptionProps = typeof __propDef.props;
export type MeaningsDescriptionEvents = typeof __propDef.events;
export type MeaningsDescriptionSlots = typeof __propDef.slots;
export default class MeaningsDescription extends SvelteComponentTyped<MeaningsDescriptionProps, MeaningsDescriptionEvents, MeaningsDescriptionSlots> {
}
export {};