massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / babel / babel / messages / jslexer.pyi
1 from typing import Any, NamedTuple
2
3 operators: Any
4 escapes: Any
5 name_re: Any
6 dotted_name_re: Any
7 division_re: Any
8 regex_re: Any
9 line_re: Any
10 line_join_re: Any
11 uni_escape_re: Any
12
13 class Token(NamedTuple):
14     type: Any
15     value: Any
16     lineno: Any
17
18 def get_rules(jsx, dotted, template_string): ...
19 def indicates_division(token): ...
20 def unquote_string(string): ...
21 def tokenize(source, jsx: bool = ..., dotted: bool = ..., template_string: bool = ...) -> None: ...