massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Pillow / PIL / ImageSequence.pyi
1 from typing import Any
2
3 class Iterator:
4     im: Any
5     position: Any
6     def __init__(self, im) -> None: ...
7     def __getitem__(self, ix): ...
8     def __iter__(self): ...
9     def __next__(self): ...
10
11 def all_frames(im, func: Any | None = ...): ...