mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
11 lines
248 B
Python
11 lines
248 B
Python
from typing import Any, List
|
|
|
|
COMMON_P: str
|
|
WORDS: Any
|
|
COMMON_WORDS: Any
|
|
|
|
def sentence() -> str: ...
|
|
def paragraph() -> str: ...
|
|
def paragraphs(count: int, common: bool = ...) -> List[str]: ...
|
|
def words(count: int, common: bool = ...) -> str: ...
|