UNPKG

cypher-engine

Version:

Cypher Engine to generate Cypher queries

10 lines (8 loc) 207 B
export class Property { public name: string; public value: string | number | boolean; constructor(name: string, value: string | number | boolean) { this.name = name; this.value = value; } }