export interface ICommonsRequestWithGetMethodTypecast { get(field: string): string | undefined; } export interface ICommonsRequestWithBodyTypecast { body: { [field: string]: string | number | boolean | null; }; } export interface ICommonsRequestWithQueryTypecast { query: { [field: string]: string | number | boolean; }; }