Skip to content

Commit 2225bef

Browse files
committed
Generate api doc
1 parent ef20f0e commit 2225bef

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

common/api-review/functions-exp.api.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,34 @@
66

77
import { FirebaseApp } from '@firebase/app-types-exp';
88
import { Functions } from '@firebase/functions-types-exp';
9+
import { FunctionsError } from '@firebase/functions-types-exp';
10+
import { FunctionsErrorCode } from '@firebase/functions-types-exp';
911
import { HttpsCallable } from '@firebase/functions-types-exp';
1012
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 }
1120

1221
// @public
1322
export function getFunctions(app: FirebaseApp, regionOrCustomDomain?: string): Functions;
1423

24+
export { HttpsCallable }
25+
1526
// @public
1627
export function httpsCallable(functionsInstance: Functions, name: string, options?: HttpsCallableOptions): HttpsCallable;
1728

29+
export { HttpsCallableOptions }
30+
31+
export { HttpsCallableResult }
32+
1833
// @public
1934
export function useFunctionsEmulator(functionsInstance: Functions, host: string, port: number): void;
2035

2136

22-
export * from "@firebase/functions-types-exp";
23-
2437
// (No @packageDocumentation comment for this package)
2538

2639
```

0 commit comments

Comments
 (0)