5 lines
201 B
Plaintext
5 lines
201 B
Plaintext
/**
|
|
* String consisting of an optional HTTP method and relative path or absolute URL. Examples: `'/orgs/{org}'`, `'PUT /orgs/{org}'`, `GET https://example.com/foo/bar`
|
|
*/
|
|
export type Route = string;
|