nest-arango
Version:
ArangoDB driver module for NestJS with a built-in CLI tool for creating and running migration scripts
13 lines • 643 B
TypeScript
import { AqlValue } from 'arangojs/aql';
export declare const getDocumentToken: (model: string, connectionName?: string) => string;
export declare const getConnectionToken: (name?: string) => string;
export declare const getManagerToken: (connectionName?: string) => string;
type AqlPart = {
templateStrings: string[];
args: AqlValue[];
};
export declare function aqlPart(templateStrings: TemplateStringsArray, ...args: AqlValue[]): AqlPart;
export declare const aqlConcat: (...parts: (AqlPart | string)[]) => AqlPart;
export declare const documentAQLBuilder: (obj: any) => AqlPart;
export {};
//# sourceMappingURL=arango.util.d.ts.map