Files
baijiahao_data_crawl/venv/Lib/site-packages/mitmproxy_rs/syntax_highlight.pyi

20 lines
333 B
Python
Raw Normal View History

2025-12-25 11:16:59 +08:00
from __future__ import annotations
from typing import Literal
def highlight(text: str, language: Literal["css", "javascript", "xml", "yaml", "none", "error"]) -> list[tuple[str, str]]:
pass
def languages() -> list[str]:
pass
def tags() -> list[str]:
pass
__all__ = [
"highlight",
"languages",
"tags",
]