Files
django-stubs/django-stubs-generated/utils/deconstruct.pyi
2018-12-03 18:52:44 +03:00

7 lines
269 B
Python

from typing import Any, Optional, Type, Union
from django.contrib.postgres.validators import KeysValidator
from django.core.validators import RegexValidator
def deconstructible(*args: Any, path: Optional[Any] = ...) -> Type[Union[KeysValidator, RegexValidator]]: ...