Returns a map from the name to signature for all API functions.
(cls)
| 111 | |
| 112 | @classmethod |
| 113 | def allSignatures(cls) -> dict[str, dict[str, Any]]: |
| 114 | """Returns a map from the name to signature for all API functions.""" |
| 115 | cls.initialize() |
| 116 | return {name: func.getSignature() for name, func in cls._api.items()} |
| 117 | |
| 118 | @classmethod |
| 119 | def unboundFunctions(cls) -> dict[str, Any]: |
no test coverage detected