diff --git a/stubs/rx/concurrency/scheduleperiodic.pyi b/stubs/rx/concurrency/scheduleperiodic.pyi new file mode 100644 --- /dev/null +++ b/stubs/rx/concurrency/scheduleperiodic.pyi @@ -0,0 +1,10 @@ +# Stubs for rx.concurrency.scheduleperiodic (Python 3) +# +# NOTE: This dynamically typed stub was automatically generated by stubgen. + +from typing import Any, Optional + +class SchedulePeriodic: + def __init__(self, scheduler: Any, period: Any, action: Any, state: Optional[Any] = ...) -> None: ... + def tick(self, scheduler: Any, command: Any) -> None: ... + def start(self): ...