({ userId, teamId }: { userId: string; teamId: string })
| 32 | |
| 33 | interface IChatModel extends mongoose.Model<IChatDocument> { |
| 34 | getChatList({ userId, teamId }: { userId: string; teamId: string }): Promise<IChatDocument[]>; |
| 35 | |
| 36 | createOrUpdate({ |
| 37 | chatParticipantIds, |
no outgoing calls
no test coverage detected