@@ -216,6 +216,7 @@ <h1 class="page-title">index.js</h1>
216216 > < code > import Auth from './src/auth';
217217import Users from './src/management/users';
218218import WebAuth from './src/webauth';
219+ export {TimeoutError} from './src/utils/fetchWithTimeout';
219220
220221/**
221222 * Auth0 for React Native client
@@ -224,7 +225,6 @@ <h1 class="page-title">index.js</h1>
224225 * @class Auth0
225226 */
226227export default class Auth0 {
227-
228228 /**
229229 * Creates an instance of Auth0.
230230 * @param {Object} options your Auth0 application information
@@ -234,7 +234,7 @@ <h1 class="page-title">index.js</h1>
234234 * @memberof Auth0
235235 */
236236 constructor(options = {}) {
237- const { domain, clientId, ...extras } = options;
237+ const {domain, clientId, ...extras} = options;
238238 this.auth = new Auth({baseUrl: domain, clientId, ...extras});
239239 this.webAuth = new WebAuth(this.auth);
240240 this.options = options;
@@ -246,10 +246,11 @@ <h1 class="page-title">index.js</h1>
246246 * @return {Users}
247247 */
248248 users(token) {
249- const { domain, clientId, ...extras } = this.options;
249+ const {domain, clientId, ...extras} = this.options;
250250 return new Users({baseUrl: domain, clientId, ...extras, token});
251251 }
252- };</ code > </ pre >
252+ }
253+ </ code > </ pre >
253254 </ article >
254255 </ section >
255256 </ div >
@@ -258,7 +259,7 @@ <h1 class="page-title">index.js</h1>
258259
259260 < footer >
260261 Generated by < a href ="https://github.com/jsdoc3/jsdoc "> JSDoc 3.6.4</ a > on
261- Fri Jan 07 2022 16:42:51 GMT+0100 (Central European Standard Time) using
262+ Thu Jan 27 2022 16:10:06 GMT+0100 (Central European Standard Time) using
262263 the Minami theme.
263264 </ footer >
264265
0 commit comments