@themost/web
Version:
MOST Web Framework 2.0 - Web Server Module
14 lines (12 loc) • 393 B
TypeScript
// @themost-framework 2.0 Codename Blueshift Copyright (c) 2017-2025, THEMOST LP All rights reserved
export declare class HttpRoute {
constructor(route: string);
constructor(route: any);
isMatch(urlToMatch: string): boolean;
routeData?: any;
route?: any;
routeIndex?: number;
patterns: any;
parsers: any;
}
export declare function createInstance(): HttpRoute;