| 157 | * Similar to {@link ConnectionBuilder} but read-only. |
| 158 | */ |
| 159 | export interface ReadonlyConnectionBuilder<DB> extends Omit< |
| 160 | ConnectionBuilder<DB>, |
| 161 | 'execute' |
| 162 | > { |
| 163 | /** |
| 164 | * Similar to {@link ConnectionBuilder.execute} but read-only. |
| 165 | */ |
| 166 | execute<T>( |
| 167 | callback: (db: ReadonlyKysely<DB>) => Promise<T>, |
| 168 | options?: AbortableOperationOptions, |
| 169 | ): Promise<T> |
| 170 | } |
| 171 | |
| 172 | /** |
| 173 | * Similar to {@link TransactionBuilder} but read-only. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…