11 lines
294 B
Python
11 lines
294 B
Python
from typing import Final
|
|
from typing_extensions import CapsuleType
|
|
|
|
# NOTE: uncomment these to include any queries that this grammar contains:
|
|
|
|
# HIGHLIGHTS_QUERY: Final[str]
|
|
# INJECTIONS_QUERY: Final[str]
|
|
# LOCALS_QUERY: Final[str]
|
|
# TAGS_QUERY: Final[str]
|
|
|
|
def language() -> CapsuleType: ...
|