Files

5 lines
135 B
TypeScript
Raw Permalink Normal View History

2025-08-11 11:06:07 +08:00
declare module 'parse-headers' {
function parseHeaders(headers: string): Record<string, string | string[]>
export = parseHeaders
}