import { BaseService } from "./base.service"; import { IParamsMapValue, IContext, TNext } from "../interfaces"; export declare class ParamsService extends BaseService { static paramsMap: Map; static fomartParamsMapKey(target: object | any, propertyKey: string): string; paramsToList(paramsMapKey: string, ctx: IContext, next: TNext): any[]; paramsToErrorList(paramsMapKey: string, err: Error, ctx: IContext): any[]; }