1.0.0 • Published 6 months ago
@twilio/deprecation-decorator
Licence
ISC
Version
1.0.0
Deps
3
Size
78 kB
Vulns
0
Weekly
0
Deprecation Decorator
Annotation for deprecated class methods, logs warning with information about method usage
Usage
import { deprecated } from "@twilio/deprecation-decorator";
class SomeClass {
@deprecated("oldMethod", "newMethod", "http://docs.link")
oldMethod() {
// some deprecated method
}
newMethod() {
// method to use instead
}
}