File tree Expand file tree Collapse file tree 2 files changed +20
-6
lines changed Expand file tree Collapse file tree 2 files changed +20
-6
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,8 @@ import driver, {
2525 RxResult ,
2626 Session ,
2727 ConnectionProvider ,
28- Record
28+ Record ,
29+ types
2930} from '../../'
3031
3132const dateTime = DateTime . fromStandardDate ( new Date ( ) )
@@ -70,3 +71,16 @@ const rxTransaction: RxTransaction = dummy
7071const rxResult : RxResult = dummy
7172
7273const record : Record = new Record ( [ 'role' ] , [ 124 ] )
74+
75+ dummy instanceof types . Node
76+ dummy instanceof types . PathSegment
77+ dummy instanceof types . Path
78+ dummy instanceof types . Relationship
79+ dummy instanceof types . Point
80+ dummy instanceof types . Date
81+ dummy instanceof types . DateTime
82+ dummy instanceof types . Duration
83+ dummy instanceof types . LocalDateTime
84+ dummy instanceof types . LocalTime
85+ dummy instanceof types . Time
86+ dummy instanceof types . Integer
Original file line number Diff line number Diff line change @@ -98,11 +98,11 @@ declare function driver(
9898) : Driver
9999
100100declare const types : {
101- Node : Node
102- Relationship : Relationship
103- UnboundRelationship : UnboundRelationship
104- PathSegment : PathSegment
105- Path : Path
101+ Node : typeof Node
102+ Relationship : typeof Relationship
103+ UnboundRelationship : typeof UnboundRelationship
104+ PathSegment : typeof PathSegment
105+ Path : typeof Path
106106 Result : Result
107107 ResultSummary : ResultSummary
108108 Record : Record
You can’t perform that action at this time.
0 commit comments