9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
|
|
export interface IProgressState {
|
||
|
|
percent: number,
|
||
|
|
show: boolean,
|
||
|
|
canSuccess: boolean,
|
||
|
|
duration: number,
|
||
|
|
height: string,
|
||
|
|
color: string,
|
||
|
|
failedColor: string,
|
||
|
|
}
|