export interface OAuthData {
	isAuthenticated: boolean;
	userName: string;
	loginError: string;
	profile: any;
}
