Completely updated React, fixed #11, (hopefully)
This commit is contained in:
31
goTorrentWebUI/node_modules/material-ui/Modal/Modal.d.ts
generated
vendored
Normal file
31
goTorrentWebUI/node_modules/material-ui/Modal/Modal.d.ts
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
import * as React from 'react';
|
||||
import { StandardProps, ModalManager } from '..';
|
||||
import { BackdropProps } from './Backdrop';
|
||||
import { PortalProps } from '../Portal';
|
||||
|
||||
export interface ModalProps
|
||||
extends StandardProps<
|
||||
React.HtmlHTMLAttributes<HTMLDivElement> & Partial<PortalProps>,
|
||||
ModalClassKey
|
||||
> {
|
||||
BackdropComponent?: React.ReactType<BackdropProps>;
|
||||
BackdropProps?: Partial<BackdropProps>;
|
||||
disableAutoFocus?: boolean;
|
||||
disableBackdropClick?: boolean;
|
||||
disableEnforceFocus?: boolean;
|
||||
disableEscapeKeyDown?: boolean;
|
||||
disableRestoreFocus?: boolean;
|
||||
hideBackdrop?: boolean;
|
||||
keepMounted?: boolean;
|
||||
manager?: ModalManager;
|
||||
onBackdropClick?: React.ReactEventHandler<{}>;
|
||||
onClose?: React.ReactEventHandler<{}>;
|
||||
onEscapeKeyDown?: React.ReactEventHandler<{}>;
|
||||
open: boolean;
|
||||
}
|
||||
|
||||
export type ModalClassKey = 'root' | 'hidden';
|
||||
|
||||
declare const Modal: React.ComponentType<ModalProps>;
|
||||
|
||||
export default Modal;
|
Reference in New Issue
Block a user