UNPKG

axiodb

Version:

The Pure JavaScript Alternative to SQLite. Embedded NoSQL database for Node.js with MongoDB-style queries, zero native dependencies, built-in InMemoryCache, and web GUI. Perfect for desktop apps, CLI tools, and embedded systems. No compilation, no platfor

17 lines (16 loc) 476 B
import { AxioDBCloud } from './AxioDBCloud.client'; /** * Aggregation Proxy - Aggregation builder for remote aggregations * Mirrors the Aggregation class API */ export default class AggregationProxy { private client; private dbName; private collectionName; private pipeline; constructor(client: AxioDBCloud, dbName: string, collectionName: string, pipeline: object[]); /** * Execute the aggregation pipeline */ exec(): Promise<any>; }