manifold/web/lib/firebase/api-call.ts
2021-12-18 23:35:37 -06:00

7 lines
179 B
TypeScript

import { getFunctions, httpsCallable } from 'firebase/functions'
const functions = getFunctions()
export const cloudFunction = (name: string) => httpsCallable(functions, name)