The persisted `content` of the most recently inserted row at `index`.
(index: number)
| 48 | |
| 49 | /** The persisted `content` of the most recently inserted row at `index`. */ |
| 50 | function lastRowContent(index: number): PersistedMessage { |
| 51 | return lastValuesRows()[index].content as PersistedMessage |
| 52 | } |
| 53 | |
| 54 | /** The first arg passed to the most recent `.values(...)` call. */ |
| 55 | function lastValuesRows() { |
no test coverage detected