You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use decorator accept now a list of argument instead of an array when using multiple traits or config
constconf: TraitConfig={}// then
@Use(Trait1)
@Use(Trait2,conf)
@Use([Trait1,Trait2,conf])// now
@Use(Trait1)
@Use(Trait2,conf)
@Use(Trait1,Trait2,conf)
TypeScript >=4.1 is strongly recommended
TraitConfig is now strongly typed depending on used trait
TraitsRegister is available to be augmented for Trait to be reconized in config autocomplete (optional)