searchRecipient.ts 220 B

1234567891011
  1. export type RecipientItem = {
  2. memberID: number;
  3. displayName: string;
  4. displaySubtitle: string|null;
  5. thumbnailUrl: string|null;
  6. };
  7. export type SearchRecipientResponse = {
  8. list: RecipientItem[];
  9. hasMore: boolean;
  10. };