(
callback: (parent: DataType) => DataCollection<ChildDataType>)
| 107 | } |
| 108 | |
| 109 | getRelated<ChildDataType extends BaseClass>( |
| 110 | callback: (parent: DataType) => DataCollection<ChildDataType>) { |
| 111 | return new DataMultiCollection<DataType, ChildDataType>(this.accessor, this.array, null, null, |
| 112 | callback); |
| 113 | } |
| 114 | |
| 115 | getRelatedProperties(callback: (child: DataType) => DataPropertiesCollection) { |
| 116 | return new DataMultiPropertiesCollection<DataType>(this.accessor, this.array, null, null, |
no outgoing calls
no test coverage detected