nativescript-firebase-updated-new
Version:
7 lines (4 loc) • 337 B
TypeScript
import { firebaseFunctions } from "../firebase";
export declare type HttpsCallable<I, O> = (callableData: I) => Promise<O>;
export declare function httpsCallable<I = {}, O = {}>(functionName: string, region?: firebaseFunctions.SupportedRegions): HttpsCallable<I, O>;
export declare function useFunctionsEmulator(origin: string): void;