test-nut-ui
Version:
<p align="center"> <img alt="logo" src="https://img11.360buyimg.com/imagetools/jfs/t1/211965/25/7152/22022/61b16785E433119bb/aa41d7a9f7e823f3.png" width="150" style="margin-bottom: 10px;"> </p>
15 lines (14 loc) • 577 B
TypeScript
import React, { FunctionComponent, HTMLAttributes } from 'react';
import { OverlayProps } from '../../packages/overlay/overlay';
interface DialogWrapProps extends OverlayProps {
visible: boolean;
overlay: boolean;
overlayStyle: React.CSSProperties;
overlayClassName: string;
footer: React.ReactNode;
onCancel: () => void;
onClose: () => void;
onOverlayClick: (e: MouseEvent) => boolean | void;
}
export declare const DialogWrap: FunctionComponent<Partial<DialogWrapProps> & Omit<HTMLAttributes<HTMLDivElement>, 'title' | 'content'>>;
export {};