profile-bind.component.d.ts 1.5 KB

12345678910111213141516171819202122232425262728293031323334
  1. import { AuthProfileService } from "../auth-profile.service";
  2. import Parse from "parse";
  3. import { Router } from "@angular/router";
  4. import { AlertController, ModalController } from "@ionic/angular";
  5. import { ToastController } from "@ionic/angular";
  6. import { CrossService } from "../../../platform/cross.service";
  7. import * as i0 from "@angular/core";
  8. export declare class ProfileBindComponent {
  9. private authProfile;
  10. private router;
  11. private alertController;
  12. private toastController;
  13. cross: CrossService;
  14. private modalController;
  15. profile: Parse.Object;
  16. user: Parse.User;
  17. profileList: Array<Parse.Object>;
  18. pdata: any;
  19. now: Date;
  20. currentProfile: string;
  21. isLoading: boolean;
  22. onResize(): void;
  23. constructor(authProfile: AuthProfileService, router: Router, alertController: AlertController, toastController: ToastController, cross: CrossService, modalController: ModalController);
  24. loadProfiles(): Promise<void>;
  25. bindProfile(p?: Parse.Object): Promise<void>;
  26. profileSearched: Parse.Object;
  27. searchProfile(): Promise<void>;
  28. selectProfile(p: Parse.Object): Promise<void>;
  29. goProfileManage(): void;
  30. onShowModal(): Promise<void>;
  31. showToast(message: string, color?: 'success' | 'warning' | 'danger'): Promise<void>;
  32. static ɵfac: i0.ɵɵFactoryDeclaration<ProfileBindComponent, never>;
  33. static ɵcmp: i0.ɵɵComponentDeclaration<ProfileBindComponent, "fm-profile-bind", never, {}, {}, never, never, false, never>;
  34. }