(props: any)
| 4 | import { isPlainObject } from './is-plain-object'; |
| 5 | |
| 6 | function isJsObject(props: any) { |
| 7 | if (typeof props === 'object' && props !== null) { |
| 8 | return props.type && props.source && props.compiled; |
| 9 | } |
| 10 | } |
| 11 | function isActionRef(props: any): boolean { |
| 12 | return props.type && props.type === 'actionRef'; |
| 13 | } |
no outgoing calls
no test coverage detected
searching dependent graphs…