UNPKG

amis

Version:

一种MIS页面生成工具

20 lines (19 loc) 457 B
/** * @file Overlay * @description * @author fex */ import React from 'react'; interface OverlayProps { placement?: string; show?: boolean; rootClose?: boolean; onHide?(props: any, ...args: any[]): any; container?: React.ReactNode | Function; target?: React.ReactNode | Function; } export default class Overlay extends React.Component<OverlayProps> { constructor(props: OverlayProps); render(): JSX.Element; } export {};