(...args: [any])
| 624 | const all: Q['all'] = (...args: [any]) => primary.all(...args); |
| 625 | const get: Q['get'] = (...args: [any]) => primary.get(...args); |
| 626 | const values: Q['values'] = (...args: [any]) => primary.values(...args); |
| 627 | const transaction: Q['transaction'] = (...args: [any]) => primary.transaction(...args); |
| 628 | |
| 629 | return { |
nothing calls this directly
no test coverage detected
searching dependent graphs…