Returns a description of the interface provided by this function.
(self)
| 106 | return {'functionName': self._signature['name']} |
| 107 | |
| 108 | def getSignature(self) -> dict[str, Any]: |
| 109 | """Returns a description of the interface provided by this function.""" |
| 110 | return self._signature |
| 111 | |
| 112 | @classmethod |
| 113 | def allSignatures(cls) -> dict[str, dict[str, Any]]: |
no outgoing calls
no test coverage detected