UNPKG

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."

22 lines (21 loc) 510 B
import { BaseModel } from "../../../base-model"; export declare class AddressModel extends BaseModel { addressId: string; userId: string; label: string; labelName: string; link: string; addressLine1: string; addressLine2: string; addressLine3: string; pincode: string; city: string; state: string; latitude: number; longitude: number; landmark: string; type: string; instructions: string; receiverName?: string; receiverPhone?: string; }