UNPKG

@qbcart/cosmos

Version:

Azure Cosmos DB access common across the QBCart node ecosystem.

18 lines (17 loc) 528 B
/*********************************************** * @license * Copyright (c) QBCart Inc. All rights reserved. ************************************************/ import type { Container } from '@azure/cosmos'; import Base from '../base'; import EShopCart from './eshop/cart'; import EShopCustomPricing from './eshop/customPricing'; export default class Customers extends Base { eshop: EShop; constructor(container: Container); } interface EShop { cart: EShopCart; customPricing: EShopCustomPricing; } export {};