interface IRequestParams {
    data: {
        [key: string]: any;
    };
    params: {
        [key: string]: any;
    };
    query: {
        [key: string]: any;
    };
    req: Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>;
    res: Response<any, Record<string, any>>;
}

Properties

Properties

data: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
params: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
query: {
    [key: string]: any;
}

Type declaration

  • [key: string]: any
req: Request<ParamsDictionary, any, any, ParsedQs, Record<string, any>>
res: Response<any, Record<string, any>>

Generated using TypeDoc