Effect CommunityEC
Effect Community2y ago
1 reply
spaethnl

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 }
Was this page helpful?