UNPKG

type-arango

Version:

ArangoDB Foxx decorators and utilities for TypeScript

12 lines (11 loc) 506 B
/// <reference types="arangodb" /> import { DocumentData, QueryOpt } from '../types'; export declare class Entities { constructor(doc?: DocumentData); static get _col(): import("./Collection.model").Collection; static get _db(): ArangoDB.Collection<any>; static _mapToInstances(results: any[]): any[]; static filter(options?: QueryOpt): any[]; static find(keyOrOptions: QueryOpt | string | number, options?: QueryOpt): any; static count(options: QueryOpt): number; }