We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef4ef52 commit a2c157eCopy full SHA for a2c157e
1 file changed
src/llhttp/constants.ts
@@ -268,13 +268,13 @@ export const METHODS_NON_STANDARD = {
268
269
/* DRAFT https://www.ietf.org/archive/id/draft-ietf-httpbis-safe-method-w-body-02.html */
270
QUERY: 46,
271
-}
+} as const;
272
273
export const METHODS_ICECAST = {
274
SOURCE: 33,
275
276
277
-export const METHODS_AIRPLAY: Pick<typeof METHODS_BASIC_HTTP, "GET" | "POST"> = {
+export const METHODS_AIRPLAY: Simplify<Pick<typeof METHODS_BASIC_HTTP, "GET" | "POST">> = {
278
GET: 1,
279
POST: 3,
280
} as const;
0 commit comments