(dataType: ConnectionType)
| 46 | const isMap = (dataType: ConnectionType): dataType is MapPort => dataType?.kind === 'map'; |
| 47 | |
| 48 | const isContract = (dataType: ConnectionType): dataType is ContractPort => |
| 49 | dataType?.kind === 'contract'; |
| 50 | |
| 51 | const canCoercePrimitive = ( |
| 52 | source: Extract<ConnectionType, { kind: 'primitive' }>, |
no outgoing calls
no test coverage detected