anvil/striker-ui/types/APIMailRecipient.d.ts

12 lines
267 B
TypeScript

type APIMailRecipientOverview = { name: string; uuid: string };
type APIMailRecipientOverviewList = {
[uuid: string]: APIMailRecipientOverview;
};
type APIMailRecipientDetail = APIMailRecipientOverview & {
email: string;
language: string;
level: number;
};