The type of dict that is used in the 4th return value of ``env.step()``.
| 24 | |
| 25 | |
| 26 | class InfoDict(TypedDict): |
| 27 | """The type of dict that is used in the 4th return value of ``env.step()``.""" |
| 28 | |
| 29 | aux_info: dict |
| 30 | """Any information depends on auxiliary info collector.""" |
| 31 | log: Dict[str, Any] |
| 32 | """Collected by LogCollector.""" |
| 33 | |
| 34 | |
| 35 | class EnvWrapperStatus(TypedDict): |