massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / mimetypes.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/mimetypes.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stdlib/mimetypes.pyi
new file mode 100644 (file)
index 0000000..90c87d2
--- /dev/null
@@ -0,0 +1,36 @@
+import sys
+from _typeshed import StrPath
+from typing import IO, Sequence, Tuple
+
+if sys.version_info >= (3, 8):
+    def guess_type(url: StrPath, strict: bool = ...) -> tuple[str | None, str | None]: ...
+
+else:
+    def guess_type(url: str, strict: bool = ...) -> tuple[str | None, str | None]: ...
+
+def guess_all_extensions(type: str, strict: bool = ...) -> list[str]: ...
+def guess_extension(type: str, strict: bool = ...) -> str | None: ...
+def init(files: Sequence[str] | None = ...) -> None: ...
+def read_mime_types(file: str) -> dict[str, str] | None: ...
+def add_type(type: str, ext: str, strict: bool = ...) -> None: ...
+
+inited: bool
+knownfiles: list[str]
+suffix_map: dict[str, str]
+encodings_map: dict[str, str]
+types_map: dict[str, str]
+common_types: dict[str, str]
+
+class MimeTypes:
+    suffix_map: dict[str, str]
+    encodings_map: dict[str, str]
+    types_map: tuple[dict[str, str], dict[str, str]]
+    types_map_inv: tuple[dict[str, str], dict[str, str]]
+    def __init__(self, filenames: Tuple[str, ...] = ..., strict: bool = ...) -> None: ...
+    def guess_extension(self, type: str, strict: bool = ...) -> str | None: ...
+    def guess_type(self, url: str, strict: bool = ...) -> tuple[str | None, str | None]: ...
+    def guess_all_extensions(self, type: str, strict: bool = ...) -> list[str]: ...
+    def read(self, filename: str, strict: bool = ...) -> None: ...
+    def readfp(self, fp: IO[str], strict: bool = ...) -> None: ...
+    if sys.platform == "win32":
+        def read_windows_registry(self, strict: bool = ...) -> None: ...