(value: any)
| 274 | } |
| 275 | |
| 276 | function isRxComponentInput<U>(value: any): value is PushInput<U> { |
| 277 | return ( |
| 278 | value != null && |
| 279 | (hasOwnProperty.call(value, 'strategy') || |
| 280 | hasOwnProperty.call(value, 'renderCallback') || |
| 281 | hasOwnProperty.call(value, 'patchZone')) |
| 282 | ); |
| 283 | } |