qe-fe-automation
Version:
FE test automation framework using cypress
29 lines (26 loc) • 625 B
text/typescript
export interface EventWithTravelWindowsParams {
location: string;
eventName: string;
eventStartDate: string;
eventEndDate: string;
departureDate: string;
returnDate: string;
latestArrivalTime: string;
earliestReturningTime: string;
}
export interface TeamEventParams {
eventName: string;
locationType: string;
invitees: { id: string; email: string }[];
startDate: string;
endDate: string;
placeId: string;
}
export interface TeamEventParamsStringInvitees {
eventName: string;
locationType: string;
inviteeIdsOrEmails: string[];
startDate: string;
endDate: string;
placeId: string;
}