mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-05-26 02:08:42 +08:00
initial commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
from typing import (
|
||||
Dict,
|
||||
Iterator,
|
||||
List,
|
||||
Tuple,
|
||||
Union,
|
||||
)
|
||||
|
||||
|
||||
class BaseEngine:
|
||||
def __init__(self, params: Dict[str, Union[str, bool, List[str]]]) -> None: ...
|
||||
def iter_template_filenames(self, template_name: str) -> Iterator[str]: ...
|
||||
@cached_property
|
||||
def template_dirs(self) -> Tuple: ...
|
||||
Reference in New Issue
Block a user