1 | import { IdToken } from "./IdToken";
|
2 | /**
|
3 | * @hidden
|
4 | */
|
5 | export declare class ClientInfo {
|
6 | private _uid;
|
7 | get uid(): string;
|
8 | set uid(uid: string);
|
9 | private _utid;
|
10 | get utid(): string;
|
11 | set utid(utid: string);
|
12 | static createClientInfoFromIdToken(idToken: IdToken, authority: string): ClientInfo;
|
13 | constructor(rawClientInfo: string, authority: string);
|
14 | static stripPolicyFromUid(uid: string, authority: string): string;
|
15 | encodeClientInfo(): string;
|
16 | }
|