Interface DispatchController
interface DispatchController {
rawHeaders?: string[] | Buffer<ArrayBufferLike>[] | null;
rawTrailers?: string[] | Buffer<ArrayBufferLike>[] | null;
get aborted(): boolean;
get paused(): boolean;
get reason(): Error | null;
abort(reason: Error): void;
pause(): void;
resume(): void;
}Properties§
§
raw Headers?: string[] | Buffer<ArrayBufferLike>[] | null§raw Trailers?: string[] | Buffer<ArrayBufferLike>[] | null