UNPKG

scheunemann-interfaces

Version:
12 lines (11 loc) 299 B
import { EMemberType } from "../../member"; export interface ICustomerInfo { customerId: string; tokenId: string | null; name: string | null; email: string | null; phoneNumber: string | null; type: EMemberType; emailVerified: boolean; emailVerifiedAt: Date | null; }