Files
django-stubs/django/template/backends/base.pyi
Maxim Kurnikov a9f215bf64 initial commit
2018-07-29 18:12:23 +03:00

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