Documentation
    Preparing search index...

    Interface ExpressLikeResponse

    Minimal interface representing Express-like Response.

    interface ExpressLikeResponse {
        json: (body: any) => this;
        setHeader?: (name: string, value: string) => this;
        status: (code: number) => this;
        statusCode?: number;
    }
    Index

    Properties

    json: (body: any) => this
    setHeader?: (name: string, value: string) => this
    status: (code: number) => this
    statusCode?: number