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

12 lines
263 B
TypeScript

import type { BaseCreateApiPort } from "@/shared/lib/ports";
import type { Contact } from "../domain";
export interface ContactFormApiCreateProps {
email: string;
}
export type ContactFormApiPort = BaseCreateApiPort<
Contact,
ContactFormApiCreateProps
>;