tink_sql
tink_sql copied to clipboard
Problem with import alias
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>})