diff --git a/robyn/robyn.pyi b/robyn/robyn.pyi index 5ab228453..a99d0c274 100644 --- a/robyn/robyn.pyi +++ b/robyn/robyn.pyi @@ -61,7 +61,6 @@ class Url: class Identity: claims: dict[str, str] - @dataclass class QueryParams: """ @@ -73,7 +72,6 @@ class QueryParams: queries: dict[str, list[str]] - def set(self, key: str, value: str) -> None: """ Sets the value of the query parameter with the given key. @@ -85,7 +83,6 @@ class QueryParams: """ pass - def get(self, key: str, default: Optional[str]) -> Optional[str]: """ Gets the last value of the query parameter with the given key. @@ -96,7 +93,6 @@ class QueryParams: """ pass - def empty(self) -> bool: """ Returns: @@ -104,7 +100,6 @@ class QueryParams: """ pass - def contains(self, key: str) -> bool: """ Returns: @@ -134,7 +129,6 @@ class QueryParams: """ pass - def extend(self, other: QueryParams) -> None: """ Extends the query params with the other query params. @@ -144,7 +138,6 @@ class QueryParams: """ pass - def to_dict(self) -> dict[str, list[str]]: """ Returns: @@ -152,7 +145,6 @@ class QueryParams: """ pass - def __contains__(self, key: str) -> bool: pass