UNPKG

@cocalc/server

Version:

CoCalc server functionality: functions used by either the hub and the next.js server

10 lines (9 loc) 335 B
import { ProductType, ProductDescription } from "@cocalc/util/db-schema/shopping-cart-items"; interface Options { account_id: string; id: number; product?: ProductType; description?: ProductDescription; } export default function editCart({ account_id, id, product, description, }: Options): Promise<number>; export {};