export const Put: (config: string | tenp.PutInterface) => any = (config: string | tenp.PutInterface): any => {
    return (target: any, propertyKey: string) => {
        forwardMethod(target, propertyKey, 'put',  config);
    }
}