@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
11 lines (10 loc) • 322 B
TypeScript
import InternalInput from './Input';
import Item from './Item';
import TextArea from './TextArea/index';
type InternalInputType = typeof InternalInput;
type CompoundedComponent = InternalInputType & {
TextArea: typeof TextArea;
Item: typeof Item;
};
declare const Input: CompoundedComponent;
export default Input;