Completely updated React, fixed #11, (hopefully)
This commit is contained in:
19
goTorrentWebUI/node_modules/material-ui/Menu/Menu.d.ts
generated
vendored
19
goTorrentWebUI/node_modules/material-ui/Menu/Menu.d.ts
generated
vendored
@@ -1,24 +1,17 @@
|
||||
import * as React from 'react';
|
||||
import { PopoverProps, PopoverClassKey } from '../Popover';
|
||||
import { TransitionDuration, TransitionHandlers } from '../internal/transition';
|
||||
import { MenuListProps } from './MenuList';
|
||||
import { StandardProps } from '..';
|
||||
import { TransitionHandlerProps, TransitionProps } from '../transitions/transition';
|
||||
|
||||
export interface MenuProps extends StandardProps<
|
||||
PopoverProps & Partial<TransitionHandlers>,
|
||||
MenuClassKey
|
||||
> {
|
||||
export interface MenuProps
|
||||
extends StandardProps<PopoverProps & Partial<TransitionHandlerProps>, MenuClassKey> {
|
||||
anchorEl?: HTMLElement;
|
||||
MenuListProps?: MenuListProps;
|
||||
onRequestClose?: React.EventHandler<any>;
|
||||
open?: boolean;
|
||||
transitionDuration?: TransitionDuration;
|
||||
MenuListProps?: Partial<MenuListProps>;
|
||||
transitionDuration?: TransitionProps['timeout'] | 'auto';
|
||||
}
|
||||
|
||||
export type MenuClassKey =
|
||||
| PopoverClassKey
|
||||
| 'root'
|
||||
;
|
||||
export type MenuClassKey = PopoverClassKey | 'root';
|
||||
|
||||
declare const Menu: React.ComponentType<MenuProps>;
|
||||
|
||||
|
Reference in New Issue
Block a user