source: frontend/node_modules/workbox-routing/utils/constants.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 476 bytes
Line 
1import '../_version.js';
2export type HTTPMethod = 'DELETE' | 'GET' | 'HEAD' | 'PATCH' | 'POST' | 'PUT';
3/**
4 * The default HTTP method, 'GET', used when there's no specific method
5 * configured for a route.
6 *
7 * @type {string}
8 *
9 * @private
10 */
11export declare const defaultMethod: HTTPMethod;
12/**
13 * The list of valid HTTP methods associated with requests that could be routed.
14 *
15 * @type {Array<string>}
16 *
17 * @private
18 */
19export declare const validMethods: HTTPMethod[];
Note: See TracBrowser for help on using the repository browser.