import type Service from "../core/service"; import { ParamsMapping } from "../core/builder"; type RequestBodyParamsMapping = Omit & { key?: string; }; export default function RequestBody(keyOrMapping?: string | RequestBodyParamsMapping): (_target: T, propertyKey: string, descriptor: PropertyDescriptor) => void; export {};