MCPcopy Create free account
hub / github.com/form-data/form-data / ReadableOptions

Interface ReadableOptions

index.d.ts:13–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11
12// Extracted because @types/node doesn't export interfaces.
13interface ReadableOptions {
14 highWaterMark?: number;
15 encoding?: string;
16 objectMode?: boolean;
17 read?(this: stream.Readable, size: number): void;
18 destroy?(this: stream.Readable, error: Error | null, callback: (error: Error | null) => void): void;
19 autoDestroy?: boolean;
20}
21
22interface Options extends ReadableOptions {
23 writable?: boolean;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected