mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
18 lines
418 B
TypeScript
18 lines
418 B
TypeScript
interface Props {
|
|
isOpen?: boolean;
|
|
size?: string;
|
|
toggle?: () => void;
|
|
keyboard?: boolean;
|
|
backdrop?: boolean | 'static';
|
|
onEnter?: () => void;
|
|
onExit?: () => void;
|
|
className?: string;
|
|
wrapClassName?: string;
|
|
modalClassName?: string;
|
|
backdropClassName?: string;
|
|
contentClassName?: string;
|
|
zIndex?: number | string;
|
|
}
|
|
|
|
declare var Modal: React.StatelessComponent<Props>;
|
|
export default Modal; |