@qbcart/cosmos
Version:
Azure Cosmos DB access common across the QBCart node ecosystem.
12 lines (11 loc) • 488 B
TypeScript
/***********************************************
* @license
* Copyright (c) QBCart Inc. All rights reserved.
************************************************/
import type { Container } from '@azure/cosmos';
import type InventoryBanner from '@qbcart/types/eshop/inventory-banner';
import Base from '../base';
export default class Info extends Base {
constructor(container: Container);
getInventoryBanners(returnProps: string, lastSynced?: number): Promise<InventoryBanner[]>;
}