UNPKG

convex

Version:

Client for the Convex Cloud

12 lines (11 loc) 300 B
"use strict"; import { performSyscall } from "./syscall.js"; export function setupAuth() { return { getUserIdentity: () => { const syscallJSON = performSyscall("getUserIdentity", {}); return Promise.resolve(syscallJSON); } }; } //# sourceMappingURL=authentication_impl.js.map