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
/
SetProperty.d.ts
7 lines
(6 loc)
•
191 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
Property
}
from
'./Property'
;
export
declare
class
SetProperty
{
variableName
:
string
;
property
:
Property
;
constructor
(
variableName
:
string
,
updateProperty
:
Property
); }