function Injectable(){} @Injectable() // 이것 class Foo { hello() { console.log('hello world') } } const Foo = Injectable( class { hello() {} } )