platina-core
Version:
UI Kit of SberMarketing
30 lines (29 loc) • 774 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
[x: string]: any;
optionHeight?: number | undefined;
max?: number | null | undefined;
};
events: {
mousedown: MouseEvent;
mouseup: MouseEvent;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {
toolbox: {};
loading: {};
notFound: {};
default: {
option: any;
};
loadingMore: {};
};
};
export type OptionsProps = typeof __propDef.props;
export type OptionsEvents = typeof __propDef.events;
export type OptionsSlots = typeof __propDef.slots;
export default class Options extends SvelteComponentTyped<OptionsProps, OptionsEvents, OptionsSlots> {
}
export {};