We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
ClassVar
1 parent 1e5c521 commit a4cd836Copy full SHA for a4cd836
1 file changed
src/mkdocstrings_handlers/typescript/handler.py
@@ -23,16 +23,16 @@
23
class TypescriptHandler(BaseHandler):
24
"""The Typescript handler class."""
25
26
- name: str = "typescript"
+ name: ClassVar[str] = "typescript"
27
"""The handler's name."""
28
29
- domain: str = "typescript"
+ domain: ClassVar[str] = "typescript"
30
"""The cross-documentation domain/language for this handler."""
31
32
- enable_inventory: bool = False
+ enable_inventory: ClassVar[bool] = False
33
"""Whether this handler is interested in enabling the creation of the `objects.inv` Sphinx inventory file."""
34
35
- fallback_theme = "material"
+ fallback_theme: ClassVar[str] = "material"
36
"""The theme to fallback to."""
37
38
fallback_config: ClassVar[dict] = {"fallback": True}
0 commit comments