UNPKG

react-native-azure-auth

Version:

An React Native module implements Azure AD V2.0 authentication flow

12 lines (9 loc) 319 B
import Linking from './linking' import AzureAuthNative from './azure-auth' import AsyncStorage from './async-storage' const mock = {} mock.Linking = new Linking() mock.NativeModules = { AzureAuth: new AzureAuthNative() } mock.Platform = {OS: 'SomeMobile'} mock.AsyncStorage = new AsyncStorage() module.exports = mock