Files
odoo-stubs/odoo-stubs/tools/sourcemap_generator.pyi
Trinh Anh Ngoc 32f840613a Cleanup
2023-05-19 18:20:12 +07:00

19 lines
429 B
Python

class SourceMapGenerator:
def __init__(self, source_root: str | None = ...) -> None: ...
def to_json(self) -> dict: ...
def get_content(self) -> bytes: ...
def add_source(
self,
source_name: str,
source_content: str,
last_index: int,
start_offset: int = ...,
) -> None: ...
B64CHARS: bytes
SHIFTSIZE: int
FLAG: int
MASK: int
def base64vlq_encode(*values) -> str: ...