(dataType: ConnectionType)
| 44 | const isList = (dataType: ConnectionType): dataType is ListPort => dataType?.kind === 'list'; |
| 45 | |
| 46 | const isMap = (dataType: ConnectionType): dataType is MapPort => dataType?.kind === 'map'; |
| 47 | |
| 48 | const isContract = (dataType: ConnectionType): dataType is ContractPort => |
| 49 | dataType?.kind === 'contract'; |
no outgoing calls
no test coverage detected