added stubs for StopIf

This commit is contained in:
Tim Rid 2020-12-12 14:08:57 +01:00
parent fa2daec804
commit e920b2fc08

View file

@ -507,6 +507,10 @@ def Switch(
default: t.Optional[Construct[t.Any, t.Any]] = ...
) -> _Switch[t.Any, t.Any]: ...
class StopIf(Construct[None, None]):
def __init__(self, condfunc: ConstantOrContextLambda[bool]) -> None: ...
#===============================================================================
# alignment and padding
#===============================================================================