diff options
Diffstat (limited to 'src/util/schemas/AckBulkSchema.ts')
-rw-r--r-- | src/util/schemas/AckBulkSchema.ts | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/util/schemas/AckBulkSchema.ts b/src/util/schemas/AckBulkSchema.ts new file mode 100644 index 00000000..8e20723f --- /dev/null +++ b/src/util/schemas/AckBulkSchema.ts @@ -0,0 +1,9 @@ +export interface AckBulkSchema { + read_states: [ + { + channel_id: string; + message_id: string; + read_state_type: number; // WHat is this? + }, + ]; +} |