/*! * 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;