123456789101112131415161718192021222324252627282930313233343536 |
- import Parse from "parse";
- import { Router } from '@angular/router';
- import * as i0 from "@angular/core";
- export declare class AuthProfileService {
- router: Router;
- profile: Parse.Object;
- _profileId: string;
- _companyId: string;
- isLeader: boolean;
- isManager: boolean;
- get profileId(): string;
- set profileId(v: string);
- get profilePointer(): {
- __type: string;
- className: string;
- objectId: string;
- };
- get companyId(): string;
- set companyId(v: string);
- get companyPointer(): {
- __type: string;
- className: string;
- objectId: string;
- };
- redirectUrl: string;
- _user: Parse.User;
- get user(): Parse.User<Parse.Attributes>;
- set user(v: Parse.User<Parse.Attributes>);
- constructor(router: Router);
- getProfile(): Promise<Parse.Object<Parse.Attributes>>;
- bindProfile(profile: Parse.Object): Promise<void>;
- checkProfile(url: string): Promise<boolean>;
- setCurrentProfileLocalStorage(profile: Parse.Object): Promise<void>;
- static ɵfac: i0.ɵɵFactoryDeclaration<AuthProfileService, never>;
- static ɵprov: i0.ɵɵInjectableDeclaration<AuthProfileService>;
- }
|