/** * @author linhd * @date 2022/5/5 4:08 PM * @description 全局每个组件的props */ import { SelectProps } from '../Select'; import { TextFieldProps } from '../TextField'; import { TableProps } from '../Table/interface'; import { EmptyProps } from '../Empty'; import { QueryingProps } from '../Querying'; import { SelectorProps } from '../Selector/interface'; import { ComboSelectProps } from '../ComboSelect/interface'; import { InputLangProps } from '../InputLang'; import { TagGroupProps } from "../Tag/TagGroup"; import { TagPropsWithChild } from "../Tag"; interface ComponentsProps { Select?: Partial; TextField?: Partial; Table?: Partial; Empty?: Partial; Querying?: Partial; Selector?: Partial; ComboSelect?: Partial; InputLang?: Partial; TagGroup?: Partial; Tag?: Partial; [name: string]: any; } export default ComponentsProps;