mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 05:24:53 +08:00
18 lines
334 B
Python
18 lines
334 B
Python
from typing import (
|
|
Callable,
|
|
List,
|
|
Optional,
|
|
Union,
|
|
)
|
|
|
|
|
|
def check_errors(fn: Callable) -> Callable: ...
|
|
|
|
|
|
def clean_files(filelist: Union[List[Union[None, bool]], List[str], List[Union[None, str]]]) -> List[str]: ...
|
|
|
|
|
|
def gen_filenames(only_new: bool = ...) -> List[str]: ...
|
|
|
|
|
|
def reset_translations() -> None: ... |