Properties for the closure.

interface IProps {
    body: string;
    direction: "encode" | "decode";
    headers: Record<string, undefined | HeaderValue>;
}

Properties

body: string
direction: "encode" | "decode"
headers: Record<string, undefined | HeaderValue>