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."
21 lines (20 loc) • 480 B
TypeScript
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;
deliveryFee: number;
type: string;
instructions: string;
}