haxetink / tink_sql

SQL embedded into Haxe
MIT License
53 stars 16 forks source link

Problem with import alias #8

Open kevinresol opened 7 years ago

kevinresol commented 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

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>})