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