(transformations: Record<string, (item: T) => any>)
| 541 | } |
| 542 | |
| 543 | transform(transformations: Record<string, (item: T) => any>): this { |
| 544 | this._transform = transformations; |
| 545 | return this; |
| 546 | } |
| 547 | |
| 548 | // Execution methods |
| 549 | async execute(): Promise<T[]> { |
no outgoing calls
no test coverage detected