/opt/canhelp/node_modules/next/dist/server/web
NameSizeModeActions
exports/-0755rm
sandbox/-0755rm
spec-extension/-0755rm
adapter.d.ts10210644editdlrm
adapter.js185740644editdlrm
adapter.js.map284060644editdlrm
edge-route-module-wrapper.d.ts13670644editdlrm
edge-route-module-wrapper.js51840644editdlrm
edge-route-module-wrapper.js.map85220644editdlrm
error.d.ts2640644editdlrm
error.js14230644editdlrm
error.js.map13960644editdlrm
get-edge-preview-props.d.ts3870644editdlrm
get-edge-preview-props.js8020644editdlrm
get-edge-preview-props.js.map10670644editdlrm
globals.d.ts4020644editdlrm
globals.js48300644editdlrm
globals.js.map61580644editdlrm
http.d.ts6740644editdlrm
http.js7950644editdlrm
http.js.map11240644editdlrm
internal-edge-wait-until.d.ts1560644editdlrm
internal-edge-wait-until.js21720644editdlrm
internal-edge-wait-until.js.map29320644editdlrm
next-url.d.ts17520644editdlrm
next-url.js74400644editdlrm
next-url.js.map132480644editdlrm
types.d.ts19410644editdlrm
types.js1150644editdlrm
types.js.map670644editdlrm
utils.d.ts12490644editdlrm
utils.js49140644editdlrm
utils.js.map83650644editdlrm
web-on-close.d.ts5420644editdlrm
web-on-close.js27850644editdlrm
web-on-close.js.map34060644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/server/web/http.d.ts (674B)
/** * List of valid HTTP methods that can be implemented by Next.js's Custom App * Routes. */ export declare const HTTP_METHODS: readonly ["GET", "HEAD", "OPTIONS", "POST", "PUT", "DELETE", "PATCH"]; /** * A type representing the valid HTTP methods that can be implemented by * Next.js's Custom App Routes. */ export type HTTP_METHOD = (typeof HTTP_METHODS)[number]; /** * Checks to see if the passed string is an HTTP method. Note that this is case * sensitive. * * @param maybeMethod the string that may be an HTTP method * @returns true if the string is an HTTP method */ export declare function isHTTPMethod(maybeMethod: string): maybeMethod is HTTP_METHOD;