UNPKG

node-cosmos

Version:

A light weight azure cosmosdb client aiming at ease of use for creating REST API. Supports json filter, sort and offset/limit

15 lines 373 B
/** * A class represent a container for cosmosdb/mongodb */ export declare class CosmosContainer { /** * The name of the container/collection */ name: string; /** * The real container instance of cosmosdb/mongodb */ container: unknown; constructor(name: string, container?: unknown); } //# sourceMappingURL=CosmosContainer.d.ts.map