outbox.ts 337 B

12345678910111213141516
  1. export type SentNotePreview = {
  2. id: number;
  3. receiverMemberID: number;
  4. receiverName: string|null;
  5. receiverSID: string|null;
  6. receiverChannelName: string|null;
  7. receiverChannelHandle: string|null;
  8. title: string;
  9. isRead: boolean;
  10. createdAt: string;
  11. };
  12. export type NoteOutboxResponse = {
  13. total: number;
  14. list: SentNotePreview[];
  15. };