UNPKG

@mdf.js/service-registry

Version:

MMS - API - Service Registry

20 lines 656 B
/** * Copyright 2024 Mytra Control S.L. All rights reserved. * * Use of this source code is governed by an MIT-style license that can be found in the LICENSE file * or at https://opensource.org/licenses/MIT. */ import { Layer } from '@mdf.js/core'; import { Aggregator } from '../Aggregator'; /** Model class */ export declare class Model { private readonly aggregator; /** * Create an instance of model class * @param aggregator - registry instance */ constructor(aggregator: Aggregator); /** Return the state of all the providers */ health(): Promise<Layer.App.Health>; } //# sourceMappingURL=health.model.d.ts.map