You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
475 B
Plaintext
25 lines
475 B
Plaintext
11 months ago
|
/**
|
||
|
* @description 上传进度条
|
||
|
* @author wangfupeng
|
||
|
*/
|
||
|
import Editor from '../../editor/index';
|
||
|
declare class Progress {
|
||
|
private editor;
|
||
|
private $bar;
|
||
|
private $textContainer;
|
||
|
private isShow;
|
||
|
private time;
|
||
|
private timeoutId;
|
||
|
constructor(editor: Editor);
|
||
|
/**
|
||
|
* 显示进度条
|
||
|
* @param progress 进度百分比
|
||
|
*/
|
||
|
show(progress: number): void;
|
||
|
/**
|
||
|
* 隐藏
|
||
|
*/
|
||
|
private hide;
|
||
|
}
|
||
|
export default Progress;
|