@studyportals/sp-hs-misc
Version:
Miscellaneous code used in HouseStark's projects
20 lines (19 loc) • 781 B
TypeScript
import { ISuccessfulAuthenticationResult } from "../..";
/**
* @deprecated Use @studyportals/client-internal-platform-sso
*/
declare class SuccessfulAuthenticationResult implements ISuccessfulAuthenticationResult {
__i_successful_authentication_result__: true;
private _userIdentifier;
private _idToken;
private _refreshToken;
private _idTokenAvailabilityInMs;
private _idTokenTimeOfCreation;
constructor(userIdentifier: string, idToken: string, refreshToken: string, idTokenAvailabilityInMs: number, idTokenTimeOfCreation: Date);
get userIdentifier(): string;
get idToken(): string;
get refreshToken(): string;
get idTokenAvailabilityInMs(): number;
get idTokenTimeOfCreation(): Date;
}
export { SuccessfulAuthenticationResult };