Don´t forget to set up experimentalDecorators as a true value into the compileOptions attribute in the tsconfig.json file.
export function decoratorName(paramName : boolean = false) {
return function(target: any, propertyKey: string, descriptor: PropertyDescriptor) {
const originalMethod = descriptor.value;