gather-ts
Version:
A powerful code analysis and packaging tool designed for creating AI-friendly code representations for javascript and typescript projects.
7 lines (6 loc) • 361 B
TypeScript
export * from "./exceptions";
export * from "./handlers/ErrorHandler";
export * from "./utils/ErrorUtils";
export * from "./interfaces/IError";
import { IErrorHandlerDeps, IErrorHandlerOptions, IErrorHandler } from "./interfaces/IErrorHandler";
export declare function createErrorHandler(deps: IErrorHandlerDeps, options?: IErrorHandlerOptions): IErrorHandler;