@pluve/ace
Version:
一套React版本的 Taro UI 组件库
12 lines (11 loc) • 329 B
TypeScript
import { PropsWithChildren, FC, ReactNode } from 'react';
interface IPopupProps {
title?: string;
visible?: boolean;
maskClosable?: boolean;
bodyClassName?: string;
onClose?: () => void;
topRightView?: ReactNode;
}
declare const Popup: FC<PropsWithChildren<IPopupProps>>;
export default Popup;