@hhgtech/hhg-components
Version:
Hello Health Group common components
22 lines (21 loc) • 420 B
TypeScript
export declare enum OnboardingStep {
Phone = 0,
OTP = 1,
OTPEmail = 2,
PersonalInfo = 3,
UpdatePassword = 4,
Result = 5,
DynamicForm = 6
}
export type PersonalInfo = {
email?: string;
birthday?: string;
gender?: string;
name?: string;
};
export type Banner = {
heading?: string;
description?: string;
imgSrc?: string;
bgColor?: string;
};