UNPKG

@themost/web

Version:

MOST Web Framework 2.0 - Web Server Module

10 lines (7 loc) 416 B
// @themost-framework 2.0 Codename Blueshift Copyright (c) 2017-2025, THEMOST LP All rights reserved import {AuthenticateRequestHandler} from "../types"; import {HttpContext} from "../context"; export declare class BasicAuthHandler implements AuthenticateRequestHandler { authenticateRequest(context: HttpContext, callback: (err?: Error) => void); } export declare function createInstance(): BasicAuthHandler;