skedify-types
Version:
17 lines • 469 B
TypeScript
import { Appointment } from "./appointment";
import { Customer } from "./customer";
import { Contact } from "./employees";
export interface Identity {
id: string;
appointment: Appointment;
appointment_id: string;
}
export interface CustomerIdentity extends Identity {
customer_id: string;
customer: Customer;
}
export interface ContactIdentity extends Identity {
contact_id: string;
contact: Contact;
}
//# sourceMappingURL=identity.d.ts.map