reflex/reflex/components/forms/debounce.pyi
2023-08-31 14:25:56 -07:00

20 lines
969 B
Python

"""Stub file for debounce.py"""
# ------------------- DO NOT EDIT ----------------------
# This file was generated by `scripts/pyi_generator.py`!
# ------------------------------------------------------
from typing import Union, overload, Optional, Any
from reflex.components.component import Component
from reflex.vars import Var, BaseVar, ComputedVar
from reflex.event import EventChain
def props_not_none(c: Component) -> dict[str, Any]: ...
def _collect_first_child_and_props(
c: Component,
) -> tuple[Component, dict[str, Any]]: ...
class DebounceInput(Component):
@overload
@classmethod
def create(cls, *children, min_length: Optional[Union[Var[int], int]] = None, debounce_timeout: Optional[Union[Var[int], int]] = None, force_notify_by_enter: Optional[Union[Var[bool], bool]] = None, force_notify_on_blur: Optional[Union[Var[bool], bool]] = None, value: Optional[Union[Var[str], str]] = None, **props) -> "DebounceInput": ... # type: ignore