Files
goTorrent/goTorrentWebUI/node_modules/material-ui/Stepper/Stepper.d.ts

27 lines
686 B
TypeScript

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;