deprecated-decorator icon indicating copy to clipboard operation
deprecated-decorator copied to clipboard

A simple decorator for deprecated methods and properties.

Results 2 deprecated-decorator issues
Sort by recently updated
recently updated
newest added

If you have any static member which is decorated with @deprecated(), the typescript compiler will make the property undefined. Pseudo code: `class X{ @deprecated() static myProperty = 'TEST' } `...

I saw in the code that you create a warner. Would it be possible to create a custom warner? For instance I would not like to get warnings in Angular...