mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 21:46:43 +08:00
move generated stubs to separate directory, too messty
This commit is contained in:
14
django-stubs-generated/template/loaders/base.pyi
Normal file
14
django-stubs-generated/template/loaders/base.pyi
Normal file
@@ -0,0 +1,14 @@
|
||||
from typing import Any, List, Optional
|
||||
|
||||
from django.template.base import Origin, Template
|
||||
from django.template.engine import Engine
|
||||
|
||||
|
||||
class Loader:
|
||||
engine: Any = ...
|
||||
def __init__(self, engine: Engine) -> None: ...
|
||||
def get_template(
|
||||
self, template_name: str, skip: Optional[List[Origin]] = ...
|
||||
) -> Template: ...
|
||||
def get_template_sources(self, template_name: Any) -> None: ...
|
||||
def reset(self) -> None: ...
|
||||
Reference in New Issue
Block a user