UNPKG

@ocubist/error-alchemy

Version:

A powerful Node.js error-handling-framework with custom error types for easy debugging, enhanced error management, strong zod-support and useful quality-of-life-functionality for asserting and validating values.

23 lines 622 B
import { ErrorCode } from "../error-code/types"; import { Severity } from "../severity/types"; /** * Default module name used in error identifiers. * @type {string} */ export declare const DEFAULT_MODULE: string; /** * Default context used in error identifiers. * @type {string} */ export declare const DEFAULT_CONTEXT: string; /** * Default error code used in error identifiers. * @type {ErrorCode} */ export declare const DEFAULT_ERROR_CODE: ErrorCode; /** * Default severity level for errors. * @type {Severity} */ export declare const DEFAULT_SEVERITY: Severity; //# sourceMappingURL=defaultValues.d.ts.map