Open kevinresol opened 7 years ago
In tests/Db.hx: add import Db.User as DbUser; then change any Id<User> to Id<DbUser> then it fails with Type not found : _Db.Db
tests/Db.hx
import Db.User as DbUser;
Id<User>
Id<DbUser>
Type not found : _Db.Db
I think there are similar thing in tink_json/tink_web when you try to declare a route like so: public function post(body:{id:Id<DbUser>})
tink_json
tink_web
public function post(body:{id:Id<DbUser>})
In
tests/Db.hx
: addimport Db.User as DbUser;
then change anyId<User>
toId<DbUser>
then it fails withType not found : _Db.Db
I think there are similar thing in
tink_json
/tink_web
when you try to declare a route like so:public function post(body:{id:Id<DbUser>})