Files
django-stubs/django-stubs-generated/utils/deconstruct.pyi
2018-11-10 17:49:18 +03:00

10 lines
276 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]]: ...