massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Pygments / pygments / formatters / latex.pyi
1 from typing import Any
2
3 from pygments.formatter import Formatter
4 from pygments.lexer import Lexer
5
6 class LatexFormatter(Formatter):
7     name: str
8     aliases: Any
9     filenames: Any
10     docclass: Any
11     preamble: Any
12     linenos: Any
13     linenostart: Any
14     linenostep: Any
15     verboptions: Any
16     nobackground: Any
17     commandprefix: Any
18     texcomments: Any
19     mathescape: Any
20     escapeinside: Any
21     left: Any
22     right: Any
23     envname: Any
24     def __init__(self, **options) -> None: ...
25     def get_style_defs(self, arg: str = ...): ...
26     def format_unencoded(self, tokensource, outfile) -> None: ...
27
28 class LatexEmbeddedLexer(Lexer):
29     left: Any
30     right: Any
31     lang: Any
32     def __init__(self, left, right, lang, **options) -> None: ...
33     def get_tokens_unprocessed(self, text): ...