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