jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
23 lines (22 loc) • 819 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
*/
/**
* @module ui/form
*/
import type { IUIInput, IViewBased } from "../../../../../types/index";
import { UIInput } from "../input/input";
export declare class UIFileInput extends UIInput {
private button;
state: UIInput['state'] & {
onlyImages: boolean;
tooltip?: string;
};
/** @override */
className(): string;
protected createContainer(options: Partial<this['state']>): HTMLElement;
protected createNativeInput(options: Partial<this['state']>): IUIInput['nativeInput'];
constructor(jodit: IViewBased, options: Partial<UIFileInput['state']>);
}