UNPKG

@withjoy/sdk-js

Version:
17 lines (16 loc) 498 B
import { ValueListener } from "./interfaces"; export interface UserProfile { personKey: string; name: string; displayName: string; avatar: any; email: string; createdAt: number; createdBy: string; nameTimestamp: number; attending: boolean; householdAttendance: number; household: Array<any>; isLoginLess: boolean; } export declare const observeCurrentUserProfile: (eventDataSource: any, listener: ValueListener<UserProfile>) => void;