@themost/web
Version:
MOST Web Framework 2.0 - Web Server Module
11 lines (7 loc) • 399 B
TypeScript
// @themost-framework 2.0 Codename Blueshift Copyright (c) 2017-2025, THEMOST LP All rights reserved
import {BeginRequestHandler} from "../types";
import {HttpContext} from "../context";
export declare class QuerystringHandler implements BeginRequestHandler{
beginRequest(context: HttpContext, callback: (err?: Error) => void);
}
export declare function createInstance(): QuerystringHandler;