(...args: ReadonlyArray<any>)
| 148 | */ |
| 149 | export interface MicroIterator<T extends Micro<any, any, any>> { |
| 150 | next(...args: ReadonlyArray<any>): IteratorResult<YieldWrap<T>, Micro.Success<T>> |
| 151 | } |
| 152 | |
| 153 | // ---------------------------------------------------------------------------- |
no outgoing calls