UNPKG

mobile-more

Version:

基于 antd-mobile v5 扩展移动端 UI 组件

13 lines (12 loc) 463 B
import React from 'react'; import { BizDictionaryProps, BizDictionaryEnumData as BizFieldValueEnum } from '../BizDictionary'; declare const DectionaryTypeMap: { readonly enum: "text"; readonly enumTag: "tag"; }; export interface EnumFieldProps<T = any> extends Omit<BizDictionaryProps<T>, 'type'> { type: keyof typeof DectionaryTypeMap; } declare const EnumField: React.FC<EnumFieldProps>; export type { BizFieldValueEnum }; export default EnumField;