UNPKG

jodit-pro

Version:

PRO Version of Jodit Editor

19 lines (18 loc) 778 B
/*! * Jodit Editor PRO (https://xdsoft.net/jodit/) * See LICENSE.md in the project root for license information. * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/ */ import type { IProgressBar } from "jodit/esm/types/index"; import { ProgressBar } from "jodit/esm/core/ui/progress-bar/progress-bar"; import type { IFileBrowserStatePro } from "../../interface"; export declare class UIProgress extends ProgressBar implements IProgressBar { readonly state: IFileBrowserStatePro; /** @override */ className(): string; constructor(jodit: ProgressBar['jodit'], state: IFileBrowserStatePro); private onProgress; hide(): IProgressBar; progress(percentage: number): IProgressBar; show(): IProgressBar; }