react-native-firebase / functions/lib/modular
functions/lib/modular
connectFunctionsEmulator()
connectFunctionsEmulator(
functionsInstance,host,port):void
Defined in: functions/lib/modular.ts:43
Modify this instance to communicate with the Cloud Functions emulator. Note: this must be called before this instance has been used to do any operations.
getFunctions()
getFunctions(
app?,regionOrCustomDomain?):Functions
Defined in: functions/lib/modular.ts:28
Returns a Functions instance for the given app.
regionOrCustomDomain?
string
One of: a) The region the callable functions are located in (ex: us-central1) b) A custom domain hosting the callable functions (ex: https://mydomain.com). Optional.
httpsCallable()
httpsCallable<
RequestData,ResponseData,StreamData>(functionsInstance,name,options?):HttpsCallable<RequestData,ResponseData,StreamData>
Defined in: functions/lib/modular.ts:59
Returns a reference to the callable HTTPS trigger with the given name.
httpsCallableFromUrl()
httpsCallableFromUrl<
RequestData,ResponseData,StreamData>(functionsInstance,url,options?):HttpsCallable<RequestData,ResponseData,StreamData>
Defined in: functions/lib/modular.ts:80
Returns a reference to the callable HTTPS trigger with the specified url.
