react-native-azure-ad-auth
Version:
A react native azure active directory authentication component
11 lines (10 loc) • 402 B
TypeScript
import AzureAdInstance, { Credentials } from './AzureAdInstance';
export default class AzureAdAuth {
config: Credentials;
constructor(instance: AzureAdInstance);
getAuthLoginUrl(): string;
getAuthLogoutUrl(): string;
_request(params: any): Promise<any>;
getTokenFromCode(code: string): Promise<any>;
getTokenFromRefreshToken(refreshToken: string): Promise<any>;
}