massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stubs / python-slugify / slugify / slugify.pyi
diff --git a/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/python-slugify/slugify/slugify.pyi b/.config/coc/extensions/node_modules/coc-pyright/node_modules/pyright/dist/typeshed-fallback/stubs/python-slugify/slugify/slugify.pyi
new file mode 100644 (file)
index 0000000..1a3ef13
--- /dev/null
@@ -0,0 +1,19 @@
+from typing import Iterable
+
+def smart_truncate(
+    string: str, max_length: int = ..., word_boundary: bool = ..., separator: str = ..., save_order: bool = ...
+) -> str: ...
+def slugify(
+    text: str,
+    entities: bool = ...,
+    decimal: bool = ...,
+    hexadecimal: bool = ...,
+    max_length: int = ...,
+    word_boundary: bool = ...,
+    separator: str = ...,
+    save_order: bool = ...,
+    stopwords: Iterable[str] = ...,
+    regex_pattern: str | None = ...,
+    lowercase: bool = ...,
+    replacements: Iterable[Iterable[str]] = ...,
+) -> str: ...