UNPKG

antd-mobile-taro-ui

Version:

以antd-mobile为设计标准,基于taro框架的微信小程序组件库

8 lines (7 loc) 362 B
import { FC, PropsWithChildren } from 'react'; import { NativeProps } from 'antd-mobile/es/utils/native-props'; import { PopupBaseProps } from './popup-base-props'; export declare type PopupProps = PopupBaseProps & PropsWithChildren<{ position?: 'bottom' | 'top' | 'left' | 'right'; }> & NativeProps<'--z-index'>; export declare const Popup: FC<PopupProps>;