/ common / typescript / react-stepper-horizontal.d.ts
react-stepper-horizontal.d.ts
 1  interface PropTypes {
 2    activeStep: number;
 3    steps: any[];
 4    activeColor?: string;
 5    completeColor?: string;
 6    defaultColor?: string;
 7    activeTitleColor?: string;
 8    completeTitleColor?: string;
 9    defaultTitleColor?: string;
10    circleFontColor?: string;
11    size?: number;
12    circleFontSize?: number;
13    titleFontSize?: number;
14    circleTop?: number;
15    titleTop?: number;
16    defaultOpacity?: string;
17    completeOpacity?: string;
18    activeOpacity?: string;
19    defaultTitleOpacity?: string;
20    completeTitleOpacity?: string;
21    activeTitleOpacity?: string;
22    barStyle?: string;
23    defaultBarColor?: string;
24    completeBarColor?: string;
25    defaultBorderColor?: string;
26    completeBorderColor?: string;
27    activeBorderColor?: string;
28    defaultBorderStyle?: string;
29    completeBorderStyle?: string;
30    activeBorderStyle?: string;
31  }
32  declare module 'react-stepper-horizontal' {
33    import React from 'react';
34    class Stepper extends React.Component<PropTypes> {
35      constructor();
36    }
37    export = Stepper;
38  }