zulip/zerver/lib/request.pyi
Reid Barton 8c6afac7cd Add a stub file for request.py.
This stub file allows us to annotate view functions using the actual
types present in the bodies of the functions, rather than everything
having the type REQ.
2016-05-30 11:28:53 -07:00

12 lines
287 B
Python

from typing import Any
class JsonableError(Exception):
error = ... # type: Any
def to_json_error_msg(self) -> Any: ...
class RequestVariableMissingError(JsonableError): ...
def REQ(*args: Any, **kwargs: Any) -> Any: ...
def has_request_variables(view_func: Any) -> Any: ...