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

12 lines
256 B
Python

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