Complete typed representation of a parsed platformio.ini file.
| 152 | |
| 153 | @dataclass |
| 154 | class ParsedPlatformIOConfig: |
| 155 | """ |
| 156 | Complete typed representation of a parsed platformio.ini file. |
| 157 | """ |
| 158 | |
| 159 | platformio_section: Optional[PlatformIOSection] = None |
| 160 | global_env_section: Optional[GlobalEnvSection] = None |
| 161 | environments: dict[str, EnvironmentSection] = field(default_factory=lambda: {}) |
| 162 | |
| 163 | |
| 164 | @dataclass |