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
1 from typing import Iterable
2
3 def smart_truncate(
4     string: str, max_length: int = ..., word_boundary: bool = ..., separator: str = ..., save_order: bool = ...
5 ) -> str: ...
6 def slugify(
7     text: str,
8     entities: bool = ...,
9     decimal: bool = ...,
10     hexadecimal: bool = ...,
11     max_length: int = ...,
12     word_boundary: bool = ...,
13     separator: str = ...,
14     save_order: bool = ...,
15     stopwords: Iterable[str] = ...,
16     regex_pattern: str | None = ...,
17     lowercase: bool = ...,
18     replacements: Iterable[Iterable[str]] = ...,
19 ) -> str: ...