Skip to content

Commit ef20f0e

Browse files
committed
Fix for webpack
1 parent da8ead3 commit ef20f0e

File tree

1 file changed

+12
-2
lines changed
  • packages-exp/functions-exp/src

1 file changed

+12
-2
lines changed

packages-exp/functions-exp/src/api.ts

+12-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,10 @@ import { Provider } from '@firebase/component';
2323
import {
2424
Functions,
2525
HttpsCallableOptions,
26-
HttpsCallable
26+
HttpsCallable,
27+
HttpsCallableResult,
28+
FunctionsError,
29+
FunctionsErrorCode
2730
} from '@firebase/functions-types-exp';
2831
import {
2932
FunctionsService,
@@ -32,7 +35,14 @@ import {
3235
httpsCallable as _httpsCallable
3336
} from './service';
3437

35-
export * from '@firebase/functions-types-exp';
38+
export {
39+
Functions,
40+
HttpsCallableOptions,
41+
HttpsCallable,
42+
HttpsCallableResult,
43+
FunctionsError,
44+
FunctionsErrorCode
45+
};
3646

3747
/**
3848
* Returns a Functions instance for the given app.

0 commit comments

Comments
 (0)