(value: TimeCursor)
| 13 | } |
| 14 | |
| 15 | export function encodeTimeCursor(value: TimeCursor): Cursor { |
| 16 | return JSON.stringify(value) |
| 17 | } |
| 18 | |
| 19 | export function decodeTimeCursor(cursor: Cursor): TimeCursor | null { |
| 20 | if (!cursor) return null |
no outgoing calls
no test coverage detected