import type { Method } from 'axios'; import type Service from "../core/service"; export default function RequestMapping(path: string): (constructor: T) => void; export default function RequestMapping(path: string, method: Method): (target: Service, propertyKey: string, descriptor: PropertyDescriptor) => void;