Receipt.ts 155 B

12345678910
  1. /**
  2. * 接受到的消息回执
  3. */
  4. interface Receipt {
  5. chatId: string;
  6. userId: string;
  7. timestamp: number;
  8. type: string;
  9. }
  10. export default Receipt;