10 lines
173 B
TypeScript
Executable File
10 lines
173 B
TypeScript
Executable File
export interface IProgressState {
|
|
percent: number,
|
|
show: boolean,
|
|
canSuccess: boolean,
|
|
duration: number,
|
|
height: string,
|
|
color: string,
|
|
failedColor: string,
|
|
}
|