UNPKG

fhir-snapshot-generator

Version:
16 lines 692 B
/** * © Copyright Outburn Ltd. 2022-2025 All Rights Reserved * Project name: fhir-snapshot-generator */ import { ILogger, Prethrower } from '../../../types'; /** * default logger uses global console methods */ export declare const defaultLogger: ILogger; /** * Default prethrow function does nothing since the regular throw prints to console.error, which is the default error logger. * If the same prethrow function was used with both custom and default loggers, in default mode duplicate errors would have been printed */ export declare const defaultPrethrow: Prethrower; export declare const customPrethrower: (logger: ILogger) => Prethrower; //# sourceMappingURL=logger.d.ts.map