12345678910111213141516171819202122232425262728293031323334 |
- import { AuthProfileService } from "../auth-profile.service";
- import Parse from "parse";
- import { Router } from "@angular/router";
- import { AlertController, ModalController } from "@ionic/angular";
- import { ToastController } from "@ionic/angular";
- import { CrossService } from "../../../platform/cross.service";
- import * as i0 from "@angular/core";
- export declare class ProfileBindComponent {
- private authProfile;
- private router;
- private alertController;
- private toastController;
- cross: CrossService;
- private modalController;
- profile: Parse.Object;
- user: Parse.User;
- profileList: Array<Parse.Object>;
- pdata: any;
- now: Date;
- currentProfile: string;
- isLoading: boolean;
- onResize(): void;
- constructor(authProfile: AuthProfileService, router: Router, alertController: AlertController, toastController: ToastController, cross: CrossService, modalController: ModalController);
- loadProfiles(): Promise<void>;
- bindProfile(p?: Parse.Object): Promise<void>;
- profileSearched: Parse.Object;
- searchProfile(): Promise<void>;
- selectProfile(p: Parse.Object): Promise<void>;
- goProfileManage(): void;
- onShowModal(): Promise<void>;
- showToast(message: string, color?: 'success' | 'warning' | 'danger'): Promise<void>;
- static ɵfac: i0.ɵɵFactoryDeclaration<ProfileBindComponent, never>;
- static ɵcmp: i0.ɵɵComponentDeclaration<ProfileBindComponent, "fm-profile-bind", never, {}, {}, never, never, false, never>;
- }
|