12 lines
380 B
Python
Raw Normal View History

2020-02-25 21:33:33 -06:00
from typing import TypeVar, Optional, Callable, overload
from . import _ConverterType
_T = TypeVar("_T")
2020-12-19 00:11:01 -06:00
def pipe(*validators: _ConverterType) -> _ConverterType: ...
def optional(converter: _ConverterType) -> _ConverterType: ...
2020-02-25 21:33:33 -06:00
@overload
2020-12-19 00:11:01 -06:00
def default_if_none(default: _T) -> _ConverterType: ...
2020-02-25 21:33:33 -06:00
@overload
2020-12-19 00:11:01 -06:00
def default_if_none(*, factory: Callable[[], _T]) -> _ConverterType: ...