Completely updated React, fixed #11, (hopefully)
This commit is contained in:
21
goTorrentWebUI/node_modules/material-ui/es/Modal/Backdrop.d.ts
generated
vendored
Normal file
21
goTorrentWebUI/node_modules/material-ui/es/Modal/Backdrop.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
import { FadeProps } from '../transitions/Fade';
|
||||
import { TransitionProps } from '../transitions/transition';
|
||||
|
||||
export interface BackdropProps
|
||||
extends StandardProps<
|
||||
React.HTMLAttributes<HTMLDivElement> & Partial<FadeProps>,
|
||||
BackdropClassKey
|
||||
> {
|
||||
invisible?: boolean;
|
||||
onClick?: React.ReactEventHandler<{}>;
|
||||
open: boolean;
|
||||
transitionDuration?: TransitionProps['timeout'];
|
||||
}
|
||||
|
||||
export type BackdropClassKey = 'root' | 'invisible';
|
||||
|
||||
declare const Backdrop: React.ComponentType<BackdropProps>;
|
||||
|
||||
export default Backdrop;
|
Reference in New Issue
Block a user