@nutui/nutui-react-taro
Version:
京东风格的轻量级移动端 React 组件库,支持一套代码生成 H5 和小程序
16 lines (15 loc) • 604 B
TypeScript
import { default as React, FunctionComponent, HTMLAttributes } from 'react';
import { OverlayProps } from '../overlay/overlay';
interface DialogWrapProps extends OverlayProps {
visible: boolean;
overlay: boolean;
overlayStyle: React.CSSProperties;
overlayClassName: string;
footer: React.ReactNode;
close: React.ReactNode;
onCancel: () => void;
onClose: () => void;
onOverlayClick: (e: MouseEvent) => boolean | void;
}
export declare const DialogWrap: FunctionComponent<Partial<DialogWrapProps> & Omit<HTMLAttributes<HTMLDivElement>, 'title' | 'content'>>;
export {};