- export type SentNotePreview = {
- id: number;
- receiverMemberID: number;
- receiverName: string|null;
- receiverSID: string|null;
- receiverChannelName: string|null;
- receiverChannelHandle: string|null;
- title: string;
- isRead: boolean;
- createdAt: string;
- };
- export type NoteOutboxResponse = {
- total: number;
- list: SentNotePreview[];
- };
|