@mdf.js/service-registry
Version:
MMS - API - Service Registry
21 lines • 731 B
TypeScript
/**
* 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 { Health, Layer } from '@mdf.js/core';
import EventEmitter from 'events';
export declare class OurProvider extends EventEmitter implements Layer.App.Resource {
name: string;
actualStateDate: string;
componentId: string;
_status: Health.Status;
constructor(name: string, status: Health.Status);
get status(): Health.Status;
get checks(): Health.Checks;
start(): Promise<void>;
stop(): Promise<void>;
close(): Promise<void>;
}
//# sourceMappingURL=Health.assets.d.ts.map