Files
django-stubs/django/utils/xmlutils.pyi
2018-07-29 18:27:46 +03:00

15 lines
363 B
Python

from typing import (
Dict,
Optional,
)
class SimplerXMLGenerator:
def addQuickElement(
self,
name: str,
contents: Optional[str] = ...,
attrs: Optional[Dict[str, str]] = ...
) -> None: ...
def characters(self, content: str) -> None: ...
def startElement(self, name: str, attrs: Dict[str, str]) -> None: ...