/** * QErrors Stubbing Utility - TypeScript Implementation * * This module provides functionality for stubbing the qerrors module * during testing to prevent error reporting network calls. */ /** * Stub qerrors.qerrors method to silence error reporting during tests * * This function replaces the qerrors.qerrors method with a no-op function * to prevent error reporting network calls and log output during testing. * * @returns This is a side-effect function with no return value */ declare function stubQerrors(): void; export { stubQerrors }; //# sourceMappingURL=qerrorsStub.d.ts.map