UNPKG

@themost/web

Version:

MOST Web Framework 2.0 - Web Server Module

29 lines (24 loc) 860 B
/** * @license * MOST Web Framework 2.0 Codename Blueshift * Copyright (c) 2017, THEMOST LP All rights reserved * * Use of this source code is governed by an BSD-3-Clause license that can be * found in the LICENSE file at https://themost.io/license */ import {BeginRequestHandler} from "../types"; import {HttpContext} from "../context"; export declare class PostHandler implements BeginRequestHandler{ beginRequest(context: HttpContext, callback: (err?: Error) => void); } export declare class UnknownValue { static convert(value: string): any; static DateTimeRegex: RegExp; static BooleanTrueRegex: RegExp; static BooleanFalseRegex: RegExp; static NullRegex: RegExp; static UndefinedRegex: RegExp; static IntegerRegex: RegExp; static FloatRegex: RegExp; } export declare function createInstance(): PostHandler;