massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / Pygments / pygments / formatters / other.pyi
1 from typing import Any
2
3 from pygments.formatter import Formatter
4
5 class NullFormatter(Formatter):
6     name: str
7     aliases: Any
8     filenames: Any
9     def format(self, tokensource, outfile) -> None: ...
10
11 class RawTokenFormatter(Formatter):
12     name: str
13     aliases: Any
14     filenames: Any
15     unicodeoutput: bool
16     encoding: str
17     compress: Any
18     error_color: Any
19     def __init__(self, **options) -> None: ...
20     def format(self, tokensource, outfile) -> None: ...
21
22 class TestcaseFormatter(Formatter):
23     name: str
24     aliases: Any
25     def __init__(self, **options) -> None: ...
26     def format(self, tokensource, outfile) -> None: ...