import firebase from 'firebase/app' import React from 'react' import { TypedCaller } from '..' type FunctionsModule = typeof import('./2-1-typed-functions') const app: firebase.app.App = firebase.initializeApp({ // ... }) const functionsApp = app.functions('asia-northeast1') export const typedCaller = new TypedCaller(functionsApp) const Component = () => { const createUser = async () => { const result = await typedCaller.call('createUser', { name: 'test', displayName: 'Test', age: 20, timestamp: new Date().toISOString(), options: { a: true }, }) if (result.error) { console.error(result.error) return } console.log(result.data) } return }