UNPKG

@streambird/streambird-js

Version:
20 lines (19 loc) 460 B
export declare const enum MethodType { EMAIL = "email", WALLET = "wallet", PHONE_NUMBER = "phone_number" } export declare type Method = { methodId: string; methodType: MethodType; lastVerifiedAt: number; phoneNumberId?: string; phoneNumber?: string; emailId?: string; email?: string; walletType?: string; walletId?: string; walletPublicAddress?: string; totpId?: string; providerSubject?: string; };