UNPKG

@cocalc/server

Version:

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

8 lines (7 loc) 240 B
import { Item } from "@cocalc/util/db-schema/shopping-cart-items"; interface Options { account_id: string; recent?: string; } export default function getRecentPurchases({ account_id, recent, }: Options): Promise<Item[]>; export {};