Search


Search something to see results

GroceryList

interface GroceryList {
    id: GroceryListId;
    items: Map<ItemName, ItemQuantity>;
    kind: "GroceryList";
    name: GroceryListName;
    participants: Set<Participant>;
}

Index

Properties

Properties

items: Map<ItemName, ItemQuantity>
kind: "GroceryList"
participants: Set<Participant>