cmp-aws-database
Version:
The package "cmp-aws-database" is for its database, which defines global tables. These tables are designed to be imported and used across multiple applications of "craft-my-plate."
14 lines (13 loc) • 330 B
TypeScript
import { BaseModel } from "../../base-model";
export declare class UserModel extends BaseModel {
userId: string;
prospectId?: string;
userName?: string;
phoneNumber: string;
emailId?: string;
dob?: string;
gender?: string;
referralCode?: string;
tierId: string;
tierUpdatedTime?: string;
}