UNPKG

680 BTypeScriptView Raw
1import * as React from 'react';
2import { Sizes } from 'react-bootstrap';
3
4declare namespace ModalDialog {
5 export interface ModalDialogProps extends React.HTMLProps<ModalDialog> {
6 // TODO: these props are not correct https://github.com/react-bootstrap/react-bootstrap/blob/v0.31.1/src/ModalDialog.js#L9
7 onHide?: Function;
8 onEnter?: Function;
9 onEntered?: Function;
10 onEntering?: Function;
11 onExit?: Function;
12 onExited?: Function;
13 onExiting?: Function;
14 bsSize?: Sizes;
15 bsClass?: string;
16 }
17}
18declare class ModalDialog extends React.Component<ModalDialog.ModalDialogProps> { }
19export = ModalDialog;