Completely updated React, fixed #11, (hopefully)
This commit is contained in:
15
goTorrentWebUI/node_modules/material-ui/es/BottomNavigation/BottomNavigation.d.ts
generated
vendored
15
goTorrentWebUI/node_modules/material-ui/es/BottomNavigation/BottomNavigation.d.ts
generated
vendored
@@ -1,20 +1,19 @@
|
||||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
|
||||
export interface BottomNavigationProps extends StandardProps<
|
||||
React.HTMLAttributes<HTMLDivElement>,
|
||||
BottomNavigationClassKey,
|
||||
'onChange'
|
||||
> {
|
||||
export interface BottomNavigationProps
|
||||
extends StandardProps<
|
||||
React.HTMLAttributes<HTMLDivElement>,
|
||||
BottomNavigationClassKey,
|
||||
'onChange'
|
||||
> {
|
||||
children: React.ReactNode;
|
||||
onChange?: (event: React.ChangeEvent<{}>, value: any) => void;
|
||||
showLabels?: boolean;
|
||||
value?: any;
|
||||
}
|
||||
|
||||
export type BottomNavigationClassKey =
|
||||
| 'root'
|
||||
;
|
||||
export type BottomNavigationClassKey = 'root';
|
||||
|
||||
declare const BottomNavigation: React.ComponentType<BottomNavigationProps>;
|
||||
|
||||
|
Reference in New Issue
Block a user