Currently we export `attr` and `Attr` in our module. The former is to support the ES5 model API: ```javascript JSORMBase.extend({ attrs: { name: attr(String) } }) ``` while the latter is a decorator for typescript (and hopefully soon standard JS) class syntax: ```typescript @Model() class MyModel extends JSORMBase { @Attr name : string } ``` With a bit of runtime checking, we should be able to collapse these into a single export to help avoid confusion going forward.