jodit
Version:
Jodit is an awesome and useful wysiwyg editor with filebrowser
19 lines (18 loc) • 653 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/decorators/watch/README.md]]
* @packageDocumentation
* @module decorators/watch
*/
import type { DecoratorHandler, IDictionary } from "../../../types/index";
/**
* Watch decorator. Added observer for some change in field value
*/
export declare function watch(observeFields: string[] | string, opts?: {
context?: object | ((c: IDictionary) => object);
immediately?: boolean;
}): DecoratorHandler;