HttpsCallable interface

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

Signature:

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

Properties

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

HttpsCallable.stream

Signature:

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