(
db: Database,
after: ChangeCursor | number,
options: { ignore?: string[] } = {},
)
| 10 | // Both names exist so call sites read in their own direction. |
| 11 | |
| 12 | export function fetchChanges( |
| 13 | db: Database, |
| 14 | after: ChangeCursor | number, |
| 15 | options: { ignore?: string[] } = {}, |
| 16 | ): AsyncIterable<ChangeEntry> { |
| 17 | return coalesceChanges(db, after, options); |
| 18 | } |
| 19 | |
| 20 | export function fetchObjects( |
| 21 | db: Database, |
no test coverage detected