@hhgtech/hhg-components
Version:
Hello Health Group common components
8 lines (7 loc) • 825 B
TypeScript
import { LoggedInResponseType } from "./";
export declare const loginByPhonePassword: (phone: string, password: string) => Promise<import("./").ReturnType<LoggedInResponseType>>;
export declare const registerBySendPhoneOTP: (phone: string, areaCode: string) => Promise<import("./").ReturnType<unknown>>;
export declare const resendPhoneOTP: (phone: string, areaCode: string) => Promise<import("./").ReturnType<unknown>>;
export declare const verifyByPhoneOTP: (phone: string, areaCode: string, otpCode: string) => Promise<import("./").ReturnType<LoggedInResponseType>>;
export declare const resendUpdatePhoneOTP: (phone: string, areaCode: string) => Promise<import("./").ReturnType<unknown>>;
export declare const verifyUpdatePhoneOTP: (areaCode: string, otpCode: string) => Promise<import("./").ReturnType<unknown>>;