/******************************************************************************** * Copyright (c) 2022 STMicroelectronics. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v. 2.0 which is available at * https://www.eclipse.org/legal/epl-2.0, or the MIT License which is * available at https://opensource.org/licenses/MIT. * * SPDX-License-Identifier: EPL-2.0 OR MIT *******************************************************************************/ import { Logger, MaybePromise, ModelServerClientApi, ModelServerPlugin, ModelServerPluginContext } from '@eclipse-emfcloud/modelserver-plugin-ext'; /** * A simple example of a plug-in that provides triggers for automatic update of model objects. */ export declare class ExampleTriggerPlugin implements ModelServerPlugin { protected readonly logger: Logger; protected modelServerClient: ModelServerClientApi; initialize(context: ModelServerPluginContext): MaybePromise; } //# sourceMappingURL=example-trigger.d.ts.map