Recommended way of adding annotations to a class model
What is the recommended way of adding annotations to a class model? RIght now I have:
class MyModel extends S.Class<MyModel>()({}) {}
const _MyModel = pipe(
MyModel,
S.description('Some description`),
)
export { _MyModel as MyModel }