/** * Runtime.enable Bypass Script * Prevents CDP detection through console.log(Error) technique and stack trace analysis. * * IMPORTANT: This is a SCRIPT injected via addScriptToEvaluateOnNewDocument, * NOT via Runtime.evaluate (which would defeat the purpose). * * Detection vectors addressed: * - Error.stack analysis for CDP/puppeteer/playwright markers * - console.debug(Error) getter trick that fires when Runtime.enable is active * - Error.prepareStackTrace abuse */ /** * Creates the runtime enable bypass script that should be bundled with other stealth scripts. * This script runs BEFORE page JavaScript and patches Error/console to hide CDP markers. */ export declare const createRuntimeEnableBypassScript: () => string; //# sourceMappingURL=runtime-enable-bypass.d.ts.map