start on d->m removing reactions

This commit is contained in:
Cadence Ember 2023-09-25 17:36:27 +13:00
commit 4f807159ba
3 changed files with 56 additions and 1 deletions

6
types.d.ts vendored
View file

@ -215,3 +215,9 @@ export namespace R {
event_id: string
}
}
export type Pagination<T> {
chunk: T[]
next_batch?: string
prev_match?: string
}