@giorgi-g/csv-parser
Version:
CSV parser for migrations with Sequelizer
21 lines (20 loc) • 517 B
TypeScript
export declare class Profile {
private readonly id;
private readonly firstName;
private readonly lastName;
private readonly email;
private readonly gender;
private readonly phoneNumber;
private readonly birthday;
constructor(row: any);
get profile(): {
id: number;
firstName: string;
lastName: string;
email: string;
gender: number;
phoneNumber: string;
birthday: Date;
};
mapGender: (status: string) => 0 | 1 | 2;
}