types.ts 483 B

1234567891011121314151617181920212223242526
  1. export type TPinnedMessage = {
  2. message:string,
  3. name: string,
  4. lastName: string,
  5. avatarUrl:string,
  6. color: string,
  7. number:string,
  8. _id: string,
  9. type: string,
  10. fullType: string,
  11. caption: string,
  12. emoji: string,
  13. emojiCompanion: string,
  14. pinned: boolean,
  15. reply: boolean,
  16. idTime: string,
  17. companionId: string,
  18. companionIdFlow: string,
  19. owner: any,
  20. createdAt: string,
  21. updatedAt: string,
  22. __v: number
  23. }
  24. export type TPinnedMessages = TPinnedMessage[] | []