UNPKG

@antdp/fuzzy-query

Version:

基于antd封装的组件 模糊查询 自定义提示

14 lines (13 loc) 442 B
import React from "react"; import { TableProps, SelectProps } from "antd"; import "./index.css"; export interface TablesProps extends TableProps<any> { value: SelectProps<any>["value"]; width: number; onClick: (item: any, isCheck: boolean) => void; mode: SelectProps<any>["mode"]; labelInValue: boolean; ValueField: string; } declare const _default: (props: TablesProps) => React.JSX.Element; export default _default;