tokencrawler/.venv/lib/python3.9/site-packages/construct-stubs/debug.pyi
2022-03-17 22:16:30 +01:00

12 lines
333 B
Python

import typing as t
from construct.core import Construct, Context, Subconstruct
ContextLambda = t.Callable[[Context], t.Any]
class Probe(Construct[None, None]):
def __init__(
self, into: t.Optional[ContextLambda] = ..., lookahead: int = ...
) -> None: ...
class Debugger(Subconstruct[None, None, None, None]): ...