import { OnInit } from "@angular/core"; import { TimezoneCal } from "../../services/timezone/timezone.service"; import { EventService } from "../../services/event/event.service"; import { LibEventService } from "../../services/lib-event/lib-event.service"; import { SbToastService } from "../../services/iziToast/izitoast.service"; import { Router } from "@angular/router"; import { UserConfigService } from "../../services/userConfig/user-config.service"; export declare class JoinEventComponent implements OnInit { private eventService; private timezoneCal; private sbToastService; private libEventService; private router; private userConfigService; eventDetailItem: any; userData: any; eventConfig: any; canUnenroll: boolean; todayDateTime: any; isUserAbleToJoin: boolean; isEnrolled: boolean; today: any; todayDate: any; todayTime: any; startInMinutes: any; items: any; warningMessage: any; failedEnrollMentMsg: any; fullName: any; canEnroll: any; canJoin: any; toShowCounter: boolean; isCreatorAbleToUnenroll: boolean; someDate: any; isStartDate2: boolean; isStartDate1: boolean; isDisabled: boolean; canRegister: boolean; eventRegistrationEndDate: any; registrationStarted: boolean; registrationStartDate: any; eventEnded: any; muteUserPopUp: boolean; href: any; baseUrl: any; logoutUrl: any; constructor(eventService: EventService, timezoneCal: TimezoneCal, sbToastService: SbToastService, libEventService: LibEventService, router: Router, userConfigService: UserConfigService); ngOnInit(): void; /** * For validate and show/hide join button */ joinEvent(): Promise; /** * For check user is enrolled or not * @param courseId Event id * @param userId Log-in user Id */ isEnrollEvent(): void; /** * Enroll/Unenroll event * * @param action enroll/unenroll */ enrollToEvent(action: any): void; /** * For join event : check the online event Provider link for join */ checkEventProvider(): void; letModaratorJoinBBB(muted: any): void; /** * For join attain event * * @param joinLink event join url */ openProviderLink(joinLink: any): void; myTriggerFunction(): void; navtoedit(): void; }