| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- export interface Appointment {
- _id: string;
- user: string;
- title: string;
- description: string;
- dueDate: Date;
- place: string;
- duration: number;
- times: AppointmentTimes[];
- }
- export interface AppointmentTimes {
- date: Date;
- available: boolean;
- }
- export interface AuthTokenResponse {
- token: string;
- }
- export interface AppointmentDateTimes {
- date: Date;
- }
- export interface AppointmentInputs {
- name: string;
- type: "text" | "email" | "tel";
- }
- export interface AppointmentTimeRange {
- start: string;
- end: string;
- }
- export interface WeekdayAppointment {
- name: string;
- active: boolean;
- times: AppointmentTimeRange[];
- }
|