11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
type APIMailServerOverview = Pick<
|
|
MailServerFormikMailServer,
|
|
'address' | 'port' | 'uuid'
|
|
>;
|
|
|
|
type APIMailServerOverviewList = {
|
|
[uuid: string]: APIMailServerOverview;
|
|
};
|
|
|
|
type APIMailServerDetail = MailServerFormikMailServer;
|