Skip to content

Commit 9a430cc

Browse files
committed
Merge branch 'dl-fn-streaming' of https://github.com/firebase/firebase-js-sdk into dl-fn-streaming
2 parents 55d9266 + fdc70d8 commit 9a430cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/api-review/functions.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export function getFunctions(app?: FirebaseApp, regionOrCustomDomain?: string):
3737
// @public
3838
export type HttpsCallable<RequestData = unknown, ResponseData = unknown, StreamData = unknown> = {
3939
(data?: RequestData | null): Promise<HttpsCallableResult<ResponseData>>;
40-
stream: (data?: RequestData | null) => Promise<HttpsCallableStreamResult<ResponseData, StreamData>>;
40+
stream: (data?: RequestData | null, options?: HttpsCallableStreamOptions) => Promise<HttpsCallableStreamResult<ResponseData, StreamData>>;
4141
};
4242

4343
// @public

0 commit comments

Comments
 (0)