Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | export enum newPersonalInfoEnum {
PERSONAL_INFORMATION = "Details",
UPLOAD_YOUR_ID = "ID",
TAKE_A_SELFIE = "Picture with ID",
}
export type PersonalInfoTabDefaultData = {
firstName: string;
lastName: string;
DOB: Date | null | string;
phoneNumber: string;
isOwner: boolean;
hasManagerialAuthority?: boolean;
country: string;
city: string;
street: string;
state: string;
zip: string;
tinType?: "ssn" | "ein";
ownership: string;
taxID?: string;
ssn?: string;
};
|