mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-14 15:57:08 +08:00
14 lines
325 B
Python
14 lines
325 B
Python
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: ... |