Plugins like `bigfoot.http` are dynamically created proxy objects. IDEs and type checkers can't autocomplete methods like `.assert_request()` or `.mock_response()`.
Write `.pyi` stub files that declare the public API for each plugin proxy. This improves developer experience and enables strict mypy checking in user code. Start with HttpPlugin and SubprocessPlugin as prototypes.
Plugins like `bigfoot.http` are dynamically created proxy objects. IDEs and type checkers can't autocomplete methods like `.assert_request()` or `.mock_response()`.
Write `.pyi` stub files that declare the public API for each plugin proxy. This improves developer experience and enables strict mypy checking in user code. Start with HttpPlugin and SubprocessPlugin as prototypes.