Files
django-stubs/django/utils/autoreload.pyi
2018-07-29 18:27:46 +03:00

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: ...