Completely updated React, fixed #11, (hopefully)
This commit is contained in:
16
goTorrentWebUI/node_modules/material-ui/Avatar/Avatar.d.ts
generated
vendored
16
goTorrentWebUI/node_modules/material-ui/Avatar/Avatar.d.ts
generated
vendored
@@ -1,24 +1,18 @@
|
||||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
|
||||
export interface AvatarProps extends StandardProps<
|
||||
React.HTMLAttributes<HTMLDivElement>,
|
||||
AvatarClassKey
|
||||
> {
|
||||
export interface AvatarProps
|
||||
extends StandardProps<React.HTMLAttributes<HTMLDivElement>, AvatarClassKey> {
|
||||
alt?: string;
|
||||
childrenClassName?: string;
|
||||
component?: React.ReactType;
|
||||
imgProps?: Object;
|
||||
component?: React.ReactType<AvatarProps>;
|
||||
imgProps?: React.HtmlHTMLAttributes<HTMLImageElement>;
|
||||
sizes?: string;
|
||||
src?: string;
|
||||
srcSet?: string;
|
||||
}
|
||||
|
||||
export type AvatarClassKey =
|
||||
| 'root'
|
||||
| 'colorDefault'
|
||||
| 'img'
|
||||
;
|
||||
export type AvatarClassKey = 'root' | 'colorDefault' | 'img';
|
||||
|
||||
declare const Avatar: React.ComponentType<AvatarProps>;
|
||||
|
||||
|
Reference in New Issue
Block a user