jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
35 lines (34 loc) • 970 B
TypeScript
/*!
* Jodit Editor (https://xdsoft.net/jodit/)
* Released under MIT see LICENSE.txt in the project root for license information.
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net
*/
/**
* [[include:core/ui/progress-bar/README.md]]
* @packageDocumentation
* @module ui/progress-bar
*/
import type { IProgressBar } from "../../../types/index";
import { UIElement } from "../element";
export declare class ProgressBar extends UIElement implements IProgressBar {
/** @override */
className(): string;
/** @override */
protected render(): string;
/**
* Show progress bar
*/
show(): IProgressBar;
hide(): IProgressBar;
progress(percentage: number): IProgressBar;
private __animationElement;
showFileUploadAnimation(from?: {
x: number;
y: number;
}, to?: {
x: number;
y: number;
}): void;
private __cleanUpAnimation;
destruct(): any;
}