(...args: [])
| 613 | getReplica: (replicas: Q[]) => Q = () => replicas[Math.floor(Math.random() * replicas.length)]!, |
| 614 | ): SQLiteWithReplicas<Q> => { |
| 615 | const select: Q['select'] = (...args: []) => getReplica(replicas).select(...args); |
| 616 | const selectDistinct: Q['selectDistinct'] = (...args: []) => getReplica(replicas).selectDistinct(...args); |
| 617 | const $count: Q['$count'] = (...args: [any]) => getReplica(replicas).$count(...args); |
| 618 | const $with: Q['with'] = (...args: []) => getReplica(replicas).with(...args); |
nothing calls this directly
no test coverage detected
searching dependent graphs…