@mdf.js/crash
Version:
MMS - API Crash - Enhanced error management library
18 lines • 572 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 type { BaseOptions } from '.';
import { Crash } from '../Crash';
/**
* Multi error configuration options
* @category Multi
* @public
*/
export interface MultiOptions extends BaseOptions {
/** Errors that caused the creation of this instance */
causes?: Array<Error | Crash> | Error | Crash;
}
//# sourceMappingURL=MultiOptions.i.d.ts.map