@mdf.js/service-registry
Version:
MMS - API - Service Registry
20 lines • 644 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 { Aggregator } from '../Aggregator';
import { ErrorRecord } from '../types';
/** Model class */
export declare class Model {
private readonly aggregator;
/**
* Create an instance of model class
* @param aggregator - registry instance
*/
constructor(aggregator: Aggregator);
/** Get all the error in the registry */
errors(): ErrorRecord[];
}
//# sourceMappingURL=registry.model.d.ts.map