@themost/web
Version:
MOST Web Framework 2.0 - Web Server Module
10 lines (8 loc) • 363 B
TypeScript
// @themost-framework 2.0 Codename Blueshift Copyright (c) 2017-2025, THEMOST LP All rights reserved
import {HttpContext} from "./context";
export declare class HttpConsumer {
constructor(callable:(...args: any[])=> Promise<any>, params?: any);
callable:(...args: any[])=> Promise<any>;
params?: any;
run(context: HttpContext, ...args: any[]);
}