mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-07 14:00:12 +08:00
9 lines
236 B
Python
9 lines
236 B
Python
from typing import Final
|
|
|
|
__all__ = ["html5", "name2codepoint", "codepoint2name", "entitydefs"]
|
|
|
|
name2codepoint: Final[dict[str, int]]
|
|
html5: Final[dict[str, str]]
|
|
codepoint2name: Final[dict[int, str]]
|
|
entitydefs: Final[dict[str, str]]
|