mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-07 04:34:29 +08:00
7 lines
269 B
Python
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]]: ...
|