Skip to content

Commit 9085d8f

Browse files
authored
Export auth functions (#6)
1 parent 1ad0d26 commit 9085d8f

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/features.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { makeChange, wrap, mockConfig } from './main';
22
import * as analytics from './providers/analytics';
3+
import * as auth from './providers/auth';
34
import * as crashlytics from './providers/crashlytics';
45
import * as database from './providers/database';
56
import * as firestore from './providers/firestore';
@@ -11,6 +12,7 @@ export interface FeaturesList {
1112
wrap: typeof wrap;
1213
makeChange: typeof makeChange;
1314
analytics: typeof analytics;
15+
auth: typeof auth;
1416
crashlytics: typeof crashlytics;
1517
database: typeof database;
1618
firestore: typeof firestore;
@@ -23,6 +25,7 @@ export const features: FeaturesList = {
2325
wrap,
2426
makeChange,
2527
analytics,
28+
auth,
2629
crashlytics,
2730
database,
2831
firestore,

0 commit comments

Comments
 (0)