@marketto/codice-fiscale-utils
Version:
TS & JS utilities to handle Italian Codice Fiscale
18 lines (14 loc) • 382 B
text/typescript
import { BelfiorePlace } from "@marketto/belfiore-connector";
import { DateDay, DateMonth } from "../date-utils/";
import type Genders from "../types/genders.type";
export default interface IPersonalInfo {
firstName?: string;
lastName?: string;
date?: Date;
day?: DateDay;
month?: DateMonth;
year?: number;
gender?: Genders;
place?: BelfiorePlace;
omocodeId?: number;
}