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
/
src
/
interfaces
/
ICypherFunction.ts
10 lines
(8 loc)
•
225 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
CypherEngine
}
from
'../engine/CypherEngine'
;
/** * Exposes a delegate to call a CypherFunction * *
@export
*
@interface
ICypherFunction
*/
export
type
ICypherFunction
=
(
engine
:
CypherEngine
) =>
CypherEngine
;