| 482 | * that receives the entire source as an iterable. |
| 483 | */ |
| 484 | export interface SyncTransformObject { |
| 485 | /** Stateful transform function that receives the entire source. */ |
| 486 | transform: StatefulSyncTransformFn; |
| 487 | } |
| 488 | |
| 489 | /** |
| 490 | * Union type for sync transforms. |
nothing calls this directly
no outgoing calls
no test coverage detected