9 lines
229 B
TypeScript
9 lines
229 B
TypeScript
export type SubscriptionsEndpoints = {
|
|||
'subscriptions.unread': {
|
|||
POST: (params: { firstUnreadMessage: { _id: string } } | { roomId: string }) => {};
|
|||
};
|
|||
'subscriptions.read': {
|
|||
POST: (params: { rid: string }) => {};
|
|||
};
|
|||
};
|