Skip to main content
Module

x/puppeteer_plus/mod.ts>Protocol.IO.ReadRequest

Deno port of puppeteer base on latest TypeScript source.
Go to Latest
interface Protocol.IO.ReadRequest
import { type Protocol } from "https://deno.land/x/puppeteer_plus@0.14.0/mod.ts";
const { ReadRequest } = Protocol.IO;

Properties

handle: StreamHandle

Handle of the stream to read.

optional
offset: integer

Seek to the specified offset before reading (if not specificed, proceed with offset following the last read). Some types of streams may only support sequential reads.

optional
size: integer

Maximum number of bytes to read (left upon the agent discretion if not specified).