(placeholderValues?: Record<string, unknown>)
| 179 | abstract values(placeholderValues?: Record<string, unknown>): Result<T['type'], T['values']>; |
| 180 | |
| 181 | execute(placeholderValues?: Record<string, unknown>): ExecuteResult<T['type'], T['execute']> { |
| 182 | if (this.mode === 'async') { |
| 183 | return this[this.executeMethod](placeholderValues) as ExecuteResult<T['type'], T['execute']>; |
| 184 | } |
| 185 | return new ExecuteResultSync(() => this[this.executeMethod](placeholderValues)); |
| 186 | } |
| 187 | |
| 188 | mapResult(response: unknown, isFromBatch?: boolean) { |
| 189 | switch (this.executeMethod) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…