Completely updated React, fixed #11, (hopefully)
This commit is contained in:
26
goTorrentWebUI/node_modules/material-ui/Stepper/Stepper.d.ts
generated
vendored
Normal file
26
goTorrentWebUI/node_modules/material-ui/Stepper/Stepper.d.ts
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
import * as React from 'react';
|
||||
import { StandardProps } from '..';
|
||||
import { PaperProps } from '../Paper';
|
||||
import { PaperClassKey } from '../Paper/Paper';
|
||||
|
||||
export type Orientation = 'horizontal' | 'vertical';
|
||||
|
||||
export interface StepperProps extends StandardProps<PaperProps, StepperClasskey> {
|
||||
activeStep?: number;
|
||||
alternativeLabel?: boolean;
|
||||
children: React.ReactNode;
|
||||
connector?: React.ReactElement<any> | React.ReactNode;
|
||||
nonLinear?: boolean;
|
||||
orientation?: Orientation;
|
||||
}
|
||||
|
||||
export type StepperClasskey =
|
||||
| PaperClassKey
|
||||
| 'root'
|
||||
| 'horizontal'
|
||||
| 'vertical'
|
||||
| 'alternativeLabel';
|
||||
|
||||
declare const Stepper: React.ComponentType<StepperProps>;
|
||||
|
||||
export default Stepper;
|
Reference in New Issue
Block a user