@codesmith-99/ionic-appauth-test
Version:
Intergration for OpenId/AppAuth-JS into Ionic V3/4/5
14 lines (13 loc) • 350 B
TypeScript
import { TokenResponse } from "@openid/appauth";
export interface IAuthSession {
isAuthenticated: boolean;
token?: TokenResponse;
user?: any;
error?: string;
}
export declare class DefaultAuthSession implements IAuthSession {
isAuthenticated: boolean;
token?: TokenResponse;
user?: any;
error?: string;
}