vue-psa-architecture/src/app/contacts/ContactForm/ports.ts

12 lines
279 B
TypeScript

import type { BaseCreateApiPort } from "@/app/common/ports";
import type { Contact } from "@/domain/entities/contact";
export interface ContactFormApiCreateProps {
email: string;
}
export type ContactFormApiPort = BaseCreateApiPort<
Contact,
ContactFormApiCreateProps
>;