UNPKG

sedk-neo4j

Version:

Cypher builder and validator for Neo4j

14 lines (13 loc) 408 B
import { Label } from '../Label'; import { Variable } from '../Variable'; import { VarLabels, ReturnItems } from './types'; export declare class Step { private matchItems?; private returnItems?; match(variable: Variable): Step; match(...Labels: Label[]): Step; match(...varLabels: VarLabels): Step; return(...items: ReturnItems): Step; getCypher(): string; cleanUp(): void; }