When I try to pass readonly args into `where` syntax, it throws typescript syntax error `Argument of type 'readonly string[]' is not assignable to parameter of type 'AnyQueryBuilder'.` ex) ```ts function test(ids: readonly string[]) { return User.query().whereIn('id', ids) } ``` Any way to solve this problem?