massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Pillow / PIL / ImageSequence.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Pillow/PIL/ImageSequence.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/Pillow/PIL/ImageSequence.pyi
new file mode 100644 (file)
index 0000000..cdcad97
--- /dev/null
@@ -0,0 +1,11 @@
+from typing import Any
+
+class Iterator:
+    im: Any
+    position: Any
+    def __init__(self, im) -> None: ...
+    def __getitem__(self, ix): ...
+    def __iter__(self): ...
+    def __next__(self): ...
+
+def all_frames(im, func: Any | None = ...): ...