UNPKG

@mdf.js/service-registry

Version:

MMS - API - Service Registry

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