summary refs log tree commit diff
path: root/src/util/schemas/AckBulkSchema.ts
blob: 8e20723fe8298b6fb790a95f34adc30bdbd98a35 (plain) (blame)
1
2
3
4
5
6
7
8
9
export interface AckBulkSchema {
	read_states: [
		{
			channel_id: string;
			message_id: string;
			read_state_type: number; // WHat is this?
		},
	];
}