UNPKG

550 BTypeScriptView Raw
1/**
2 * @license
3 * MOST Web Framework 2.0 Codename Blueshift
4 * Copyright (c) 2017, THEMOST LP All rights reserved
5 *
6 * Use of this source code is governed by an BSD-3-Clause license that can be
7 * found in the LICENSE file at https://themost.io/license
8 */
9export declare class HttpRoute {
10 constructor(route: string);
11 constructor(route: any);
12 isMatch(urlToMatch: string): boolean;
13 routeData?: any;
14 route?: any;
15 routeIndex?: number;
16 patterns: any;
17 parsers: any;
18}
19
20export declare function createInstance(): HttpRoute;
\No newline at end of file