Removed GopherJS, basic frontend completed, need backend changes for

torrent storage
This commit is contained in:
2017-11-30 18:12:11 -05:00
parent 67fdef16b1
commit e98ad2cc88
69321 changed files with 5498914 additions and 337 deletions

View File

@@ -0,0 +1,43 @@
import * as React from 'react';
import { StandardProps } from '..';
import { PaperProps } from '../Paper';
import { TransitionDuration, TransitionHandlers } from '../internal/transition';
import { ModalProps, ModalClassKey } from '../internal/Modal';
export interface Origin {
horizontal: 'left' | 'center' | 'right' | number;
vertical: 'top' | 'center' | 'bottom' | number;
}
export interface PopoverProps extends StandardProps<
ModalProps & Partial<TransitionHandlers>,
PopoverClassKey,
'onRequestClose'
> {
anchorEl?: Object;
anchorOrigin?: Origin;
elevation?: number;
enteredClassName?: string;
enteringClassName?: string;
exitedClassName?: string;
exitingClassName?: string;
getContentAnchorEl?: Function;
marginThreshold?: number;
modal?: boolean;
onRequestClose?: Function;
open?: boolean;
role?: string;
transformOrigin?: Origin;
transitionDuration?: TransitionDuration;
theme?: Object;
PaperProps?: Partial<PaperProps>;
}
export type PopoverClassKey =
| ModalClassKey
| 'paper'
;
declare const Popover: React.ComponentType<PopoverProps>;
export default Popover;