UNPKG

@mdf.js/service-registry

Version:

MMS - API - Service Registry

20 lines 653 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 { Response } from '../types'; import { Model } from './metrics.model'; /** Service class */ export declare class Service { private readonly model; /** * Create an instance of service * @param model - model instance */ constructor(model: Model); /** Return all the actual metrics of this artifact */ metrics(jsonFormat: boolean): Promise<Response>; } //# sourceMappingURL=metrics.service.d.ts.map