| 2 | import type { PreparedQuery } from class="st">'./session.ts'; |
| 3 | |
| 4 | export interface RunnableQuery<T, TDialect extends Dialect> { |
| 5 | readonly _: { |
| 6 | readonly dialect: TDialect; |
| 7 | readonly result: T; |
| 8 | }; |
| 9 | |
| 10 | /** @internal */ |
| 11 | _prepare(): PreparedQuery; |
| 12 | } |
no outgoing calls
no test coverage detected