import type { Plugin } from "./types.js"; /** * Wraps a plugin with error handling * * ! NOT WORKING RIGHT NOW SEE https://github.com/inlang/inlang/issues/604 * * Increases DX and debuggability by providing better error messages * depending on the plugin that caused the error. */ export declare function withErrorHandling(pluginId: Plugin["id"], obj: T): T; //# sourceMappingURL=withErrorHandling.d.ts.map