mirror of
https://github.com/kristoferssolo/solorice.git
synced 2025-10-21 20:10:34 +00:00
16 lines
501 B
Python
16 lines
501 B
Python
# pyright: strict
|
|
|
|
from jmespath.visitor import Options
|
|
from typing import Any, Mapping, Optional
|
|
|
|
class ParsedResult:
|
|
def __init__(self, expression: str, parsed: Mapping[str, Any]) -> None: ...
|
|
def _render_dot_file(self) -> str: ...
|
|
def search(self, value: Any, options: Optional[Options] = ...) -> Any: ...
|
|
|
|
class Parser:
|
|
def __init__(self, lookahead: int = ...) -> None: ...
|
|
def parse(self, expression: str) -> ParsedResult: ...
|
|
@classmethod
|
|
def purge(cls) -> None: ...
|