Back to Firebase Js Sdk

HttpsCallableResult interface

docs-devsite/functions.httpscallableresult.md

12.12.1856 B
Original Source

Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference

{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}

HttpsCallableResult interface

An HttpsCallableResult wraps a single result from a function call.

<b>Signature:</b>

typescript
export interface HttpsCallableResult<ResponseData = unknown> 

Properties

PropertyTypeDescription
dataResponseDataData returned from callable function.

HttpsCallableResult.data

Data returned from callable function.

<b>Signature:</b>

typescript
readonly data: ResponseData;