kysely-org / kysely

A type-safe typescript SQL query builder
https://kysely.dev
MIT License
9.9k stars 249 forks source link

Exporting query builder classes #944

Open thetutlage opened 3 months ago

thetutlage commented 3 months ago

Currently the query builder classes are kept private and interfaces are exported from the codebase. Also, the return value for methods like db.selectFrom is an interface and not the runtime class.

After a quick discussion in Discord with @koskimas I am opening this issue, as some initial interest is shown in removing interface and using/exporting classes directly.