1
0
mirror of https://github.com/sasjs/server.git synced 2026-01-11 16:20:06 +00:00

fix: code api is updated return type

This commit is contained in:
Saad Jutt
2022-02-20 02:57:45 +05:00
parent 373d66f8af
commit e2a6810e95
4 changed files with 64 additions and 31 deletions

View File

@@ -1,7 +1,7 @@
const headerUtils = require('http-headers-validation')
export interface HTTPHeaders {
[key: string]: string | undefined
[key: string]: string
}
export const extractHeaders = (content: string): HTTPHeaders => {