mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-08 21:14:49 +08:00
10 lines
276 B
Python
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]]: ...
|