Files
med-notes/.pnpm-store/v10/files/a9/5be91cbe078a9fd6bccf9ea62bcfb5c78649e1f66c9d388023859399a10ca6d0632b63af329ac275e0a55b19902b958da791bd40e1c60734e5994b5ae57759
2025-05-09 05:30:08 +02:00

16 lines
728 B
Plaintext

export function createHeaders(isHttp: any, httpHeaders: any): Headers;
export function createResponseStatusError(status: any, url: any): MissingPDFException | UnexpectedResponseException;
export function extractFilenameFromHeader(responseHeaders: any): string | null;
export function validateRangeRequestCapabilities({ responseHeaders, isHttp, rangeChunkSize, disableRange, }: {
responseHeaders: any;
isHttp: any;
rangeChunkSize: any;
disableRange: any;
}): {
allowRangeRequests: boolean;
suggestedLength: undefined;
};
export function validateResponseStatus(status: any): boolean;
import { MissingPDFException } from "../shared/util.js";
import { UnexpectedResponseException } from "../shared/util.js";