File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 6
6
7
7
import { FirebaseApp } from ' @firebase/app-types-exp' ;
8
8
import { Functions } from ' @firebase/functions-types-exp' ;
9
+ import { FunctionsError } from ' @firebase/functions-types-exp' ;
10
+ import { FunctionsErrorCode } from ' @firebase/functions-types-exp' ;
9
11
import { HttpsCallable } from ' @firebase/functions-types-exp' ;
10
12
import { HttpsCallableOptions } from ' @firebase/functions-types-exp' ;
13
+ import { HttpsCallableResult } from ' @firebase/functions-types-exp' ;
14
+
15
+ export { Functions }
16
+
17
+ export { FunctionsError }
18
+
19
+ export { FunctionsErrorCode }
11
20
12
21
// @public
13
22
export function getFunctions(app : FirebaseApp , regionOrCustomDomain ? : string ): Functions ;
14
23
24
+ export { HttpsCallable }
25
+
15
26
// @public
16
27
export function httpsCallable(functionsInstance : Functions , name : string , options ? : HttpsCallableOptions ): HttpsCallable ;
17
28
29
+ export { HttpsCallableOptions }
30
+
31
+ export { HttpsCallableResult }
32
+
18
33
// @public
19
34
export function useFunctionsEmulator(functionsInstance : Functions , host : string , port : number ): void ;
20
35
21
36
22
- export * from " @firebase/functions-types-exp" ;
23
-
24
37
// (No @packageDocumentation comment for this package)
25
38
26
39
```
You can’t perform that action at this time.
0 commit comments