mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-15 16:27:09 +08:00
first version finished
This commit is contained in:
18
django/utils/autoreload.pyi
Normal file
18
django/utils/autoreload.pyi
Normal file
@@ -0,0 +1,18 @@
|
||||
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: ...
|
||||
Reference in New Issue
Block a user