export const Post: (config: string | tenp.PostInterface) => any = (config: string | tenp.PostInterface): any => {
    return (target: any, propertyKey: string) => {
        forwardMethod(target, propertyKey, 'post',  config);    
    }
}