Urara-Blog/node_modules/.pnpm-store/v3/files/01/bce78857625768227b2745a53b22daea1c40b55fc977c486caf1cbbbc766356104a031a28a2bd97a97b9acf1e6e748365ed148d2e982445666423dc968d7b4
2022-08-14 01:14:53 +08:00

19 lines
484 B
Text

import '../_version.js';
export declare type HTTPMethod = 'DELETE' | 'GET' | 'HEAD' | 'PATCH' | 'POST' | 'PUT';
/**
* The default HTTP method, 'GET', used when there's no specific method
* configured for a route.
*
* @type {string}
*
* @private
*/
export declare const defaultMethod: HTTPMethod;
/**
* The list of valid HTTP methods associated with requests that could be routed.
*
* @type {Array<string>}
*
* @private
*/
export declare const validMethods: HTTPMethod[];