Update stubs

This commit is contained in:
Trinh Anh Ngoc
2022-10-16 23:22:55 +07:00
parent 46abe67855
commit ee855a74a9

View File

@@ -59,6 +59,11 @@ IMPORT_DEFAULT: Pattern
def convert_default_import(content: str) -> str: ...
IS_PATH_LEGACY_RE: Pattern
IMPORT_DEFAULT_AND_NAMED_RE: Pattern
def convert_default_and_named_import(content: str) -> str: ...
RELATIVE_REQUIRE_RE: Pattern
def convert_relative_require(url: str, content: str) -> str: ...
@@ -67,6 +72,10 @@ IMPORT_STAR: Pattern
def convert_star_import(content: str) -> str: ...
IMPORT_DEFAULT_AND_STAR: Pattern
def convert_default_and_star_import(content: str) -> str: ...
IMPORT_UNNAMED_RELATIVE_RE: Pattern
def convert_unnamed_relative_import(content: str) -> str: ...