(item: Touch)
| 115 | } |
| 116 | |
| 117 | async function row(item: Touch): Promise<Row> { |
| 118 | return { |
| 119 | ...item, |
| 120 | core: await entryCore(item), |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | function next(prev: Entry | undefined, core: Core, now: number): { state: State; entry: Entry } { |
| 125 | const entry: Entry = { |
no test coverage detected