(dataType: ConnectionType)
| 39 | } |
| 40 | |
| 41 | const isPrimitive = (dataType: ConnectionType): dataType is PrimitivePort => |
| 42 | dataType?.kind === 'primitive'; |
| 43 | |
| 44 | const isList = (dataType: ConnectionType): dataType is ListPort => dataType?.kind === 'list'; |
| 45 |
no outgoing calls
no test coverage detected