From ```ts class Foo { onInit() { } onDestroy() { } } ``` To: ```ts class Foo { @OnInit() updateSomething() @OnDestroy() destroySomething() } ```