UNPKG

411 BTypeScriptView Raw
1import { HttpStatusCodes } from '../Server';
2import { Response } from './Response';
3export declare class InformationalResponse extends Response {
4 static create(statusCode: HttpStatusCodes, meta?: any): InformationalResponse;
5 static continue(meta?: any): InformationalResponse;
6 static switchingProtocols(meta?: any): InformationalResponse;
7 static processing(meta?: any): InformationalResponse;
8}