UNPKG

rebrowser-puppeteer-core

Version:

A drop-in replacement for puppeteer-core patched with rebrowser-patches. It allows to pass modern automation detection tests.

18 lines 517 B
/** * @license * Copyright 2018 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ import type { ConnectionTransport } from '../common/ConnectionTransport.js'; /** * @internal */ export declare class PipeTransport implements ConnectionTransport { #private; onclose?: () => void; onmessage?: (value: string) => void; constructor(pipeWrite: NodeJS.WritableStream, pipeRead: NodeJS.ReadableStream); send(message: string): void; close(): void; } //# sourceMappingURL=PipeTransport.d.ts.map