UNPKG

jodit

Version:

Jodit is an awesome and useful wysiwyg editor with filebrowser

26 lines (25 loc) 765 B
/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2025 Valeriy 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; destruct(): any; }