UNPKG

@hackolade/couchbase

Version:

Re-published version to have all prebuilds defined as npm packages without platform constraints for cross building an Electron application - The official Couchbase Node.js Client Library.

18 lines (17 loc) 519 B
import { AnalyticsQueryOptions, AnalyticsResult, AnalyticsMetaData } from './analyticstypes'; import { Cluster } from './cluster'; import { StreamableRowPromise } from './streamablepromises'; /** * @internal */ export declare class AnalyticsExecutor { private _cluster; /** * @internal */ constructor(cluster: Cluster); /** * @internal */ query<TRow = any>(query: string, options: AnalyticsQueryOptions): StreamableRowPromise<AnalyticsResult<TRow>, TRow, AnalyticsMetaData>; }