homehui
Version:
Vue3 二次封装基础组件文档
17 lines (16 loc) • 652 B
TypeScript
import { ColumnProps } from '../../pro-table/interface';
interface SearchFormItem {
column: ColumnProps;
searchParam: {
[key: string]: any;
};
}
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<SearchFormItem, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SearchFormItem> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};