(...args: ReadonlyArray<any>)
| 552 | * table: (data: ReadonlyArray<unknown>, properties?: ReadonlyArray<string>) => { |
| 553 | * calls.push({ rows: data.length, properties }) |
| 554 | * } |
| 555 | * }) |
| 556 | * |
| 557 | * const program = Effect.gen(function*() { |
| 558 | * const users = [ |
| 559 | * { name: "John", age: 30, city: "New York" }, |
| 560 | * { name: "Jane", age: 25, city: "London" }, |
| 561 | * { name: "Bob", age: 35, city: "Paris" } |
| 562 | * ] |
nothing calls this directly
no test coverage detected
searching dependent graphs…