UNPKG
cypher-engine
Version:
latest (1.1.1)
1.1.1
1.1.0
1.0.0
Cypher Engine to generate Cypher queries
github.com/jdksloan/CypherEngine
cypher-engine
/
lib
/
models
/
Property.d.ts
6 lines
(5 loc)
•
155 B
TypeScript
View Raw
1
2
3
4
5
6
export
declare
class
Property
{
name
:
string
;
value
:
string
|
number
|
boolean
;
constructor
(
name
:
string
,
value
:
string
|
number
|
boolean
); }