bootstrap-vue-next
Version:
Seamless integration of Vue 3, Bootstrap 5, and TypeScript for modern, type-safe UI development
34 lines (33 loc) • 1.25 kB
TypeScript
import { BFormDatalistBaseProps } from '../../types';
declare var __VLS_1: {}, __VLS_9: {
[key: string]: unknown;
value: unknown;
text?: string;
disabled?: boolean;
} | {
label: string;
options: readonly import('../..').SelectOptionRaw<unknown>[];
}, __VLS_11: {};
type __VLS_Slots = {} & {
first?: (props: typeof __VLS_1) => any;
} & {
option?: (props: typeof __VLS_9) => any;
} & {
default?: (props: typeof __VLS_11) => any;
};
declare const __VLS_base: import('vue').DefineComponent<BFormDatalistBaseProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BFormDatalistBaseProps> & Readonly<{}>, {
disabled: boolean;
id: string;
options: readonly (string | number | Record<string, unknown>)[] | import('../..').SelectOptionRaw[];
disabledField: string;
textField: string;
valueField: string;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
declare const _default: typeof __VLS_export;
export default _default;
type __VLS_WithSlots<T, S> = T & {
new (): {
$slots: S;
};
};