massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / babel / babel / messages / extract.pyi
1 from typing import Any
2
3 GROUP_NAME: str
4 DEFAULT_KEYWORDS: Any
5 DEFAULT_MAPPING: Any
6 empty_msgid_warning: str
7
8 def extract_from_dir(
9     dirname: Any | None = ...,
10     method_map=...,
11     options_map: Any | None = ...,
12     keywords=...,
13     comment_tags=...,
14     callback: Any | None = ...,
15     strip_comment_tags: bool = ...,
16 ) -> None: ...
17 def check_and_call_extract_file(
18     filepath, method_map, options_map, callback, keywords, comment_tags, strip_comment_tags, dirpath: Any | None = ...
19 ) -> None: ...
20 def extract_from_file(
21     method, filename, keywords=..., comment_tags=..., options: Any | None = ..., strip_comment_tags: bool = ...
22 ): ...
23 def extract(
24     method, fileobj, keywords=..., comment_tags=..., options: Any | None = ..., strip_comment_tags: bool = ...
25 ) -> None: ...
26 def extract_nothing(fileobj, keywords, comment_tags, options): ...
27 def extract_python(fileobj, keywords, comment_tags, options): ...
28 def extract_javascript(fileobj, keywords, comment_tags, options) -> None: ...