UNPKG

@mdf.js/service-registry

Version:

MMS - API - Service Registry

20 lines 631 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 { Model } from './health.model'; /** Service class */ export declare class Service { private readonly model; /** * Create an instance of service * @param model - model instance */ constructor(model: Model); /** Return the state of all the providers */ health(): Promise<Layer.App.Health>; } //# sourceMappingURL=health.service.d.ts.map