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

10 lines (9 loc) 267 B
import { BaseModel } from "../../base-model"; export declare class CartCategoriesModel extends BaseModel { cartId: string; categoryId: string; itemIds: Set<string>; itemsIds_v1?: Set<string>; itemsIds_v2?: Set<string>; updateCount?: number; }