|
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 | |
|---|
| 1 | import '../_version.js';
|
|---|
| 2 | export 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 | */
|
|---|
| 11 | export 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 | */
|
|---|
| 19 | export declare const validMethods: HTTPMethod[];
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.