EdgeAIG's picture
download
raw
666 Bytes
export type FailureReason = "TooManyHeaders" | "HeaderTooLarge" | "InvalidHeaderName" | "InvalidHeaderValue";
export interface Continue {
readonly _tag: "Continue";
}
export interface Failure {
readonly _tag: "Failure";
readonly reason: FailureReason;
readonly headers: Record<string, string | Array<string>>;
}
export interface Headers {
readonly _tag: "Headers";
readonly headers: Record<string, string | Array<string>>;
readonly endPosition: number;
}
export type ReturnValue = Continue | Failure | Headers;
export declare const make: () => (chunk: Uint8Array, start: number) => ReturnValue;
//# sourceMappingURL=HeadersParser.d.ts.map

Xet Storage Details

Size:
666 Bytes
·
Xet hash:
e7da2490976643b5d55c2f53b8e2aee769c46f70885243db932014980b7a2511

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.