HttpsCallable interface

A reference to a "callable" HTTP trigger in Cloud Functions.

Signature:

export interface HttpsCallable<RequestData = unknown, ResponseData = unknown, StreamData = unknown> 

Properties

Property Type Description
stream (data?: RequestData | null, options?: HttpsCallableStreamOptions) => Promise<HttpsCallableStreamResult<ResponseData, StreamData>>

HttpsCallable.stream

Signature:

stream: (data?: RequestData | null, options?: HttpsCallableStreamOptions) => Promise<HttpsCallableStreamResult<ResponseData, StreamData>>;