Skip to content

Commit 9f4c973

Browse files
committed
Merge branch 'dl-fn-streaming' of https://github.com/firebase/firebase-js-sdk into dl-fn-streaming
2 parents b481220 + 1c1f533 commit 9f4c973

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

common/api-review/functions.api.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,12 @@ export type FunctionsErrorCodeCore = 'ok' | 'cancelled' | 'unknown' | 'invalid-a
3535
export function getFunctions(app?: FirebaseApp, regionOrCustomDomain?: string): Functions;
3636

3737
// @public
38-
export type HttpsCallable<RequestData = unknown, ResponseData = unknown, StreamData = unknown> = {
38+
export interface HttpsCallable<RequestData = unknown, ResponseData = unknown, StreamData = unknown> {
39+
// (undocumented)
3940
(data?: RequestData | null): Promise<HttpsCallableResult<ResponseData>>;
41+
// (undocumented)
4042
stream: (data?: RequestData | null, options?: HttpsCallableStreamOptions) => Promise<HttpsCallableStreamResult<ResponseData, StreamData>>;
41-
};
43+
}
4244

4345
// @public
4446
export function httpsCallable<RequestData = unknown, ResponseData = unknown, StreamData = unknown>(functionsInstance: Functions, name: string, options?: HttpsCallableOptions): HttpsCallable<RequestData, ResponseData, StreamData>;

0 commit comments

Comments
 (0)