(dataType: ConnectionType)
| 42 | dataType?.kind === 'primitive'; |
| 43 | |
| 44 | const isList = (dataType: ConnectionType): dataType is ListPort => dataType?.kind === 'list'; |
| 45 | |
| 46 | const isMap = (dataType: ConnectionType): dataType is MapPort => dataType?.kind === 'map'; |
| 47 |
no outgoing calls
no test coverage detected