(
self: SyncClientProtocol,
name: str,
path: str | None = Path.root_path(),
index: int | None = -1,
)
| 175 | |
| 176 | @overload |
| 177 | def arrpop( |
| 178 | self: SyncClientProtocol, |
| 179 | name: str, |
| 180 | path: str | None = Path.root_path(), |
| 181 | index: int | None = -1, |
| 182 | ) -> JsonType | str | list[Any] | None: ... |
| 183 | |
| 184 | @overload |
| 185 | def arrpop( |