diff --git a/stubs/rx/joins/pattern.pyi b/stubs/rx/joins/pattern.pyi new file mode 100644 --- /dev/null +++ b/stubs/rx/joins/pattern.pyi @@ -0,0 +1,13 @@ +# Stubs for rx.joins.pattern (Python 3) +# +# NOTE: This dynamically typed stub was automatically generated by stubgen. + +from .plan import Plan +from typing import Any + +class Pattern: + patterns: Any = ... + def __init__(self, patterns: Any) -> None: ... + def and_(self, other: Any): ... + def __and__(self, other: Any): ... + def then_do(self, selector: Any): ...