You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
499 B
20 lines
499 B
9 months ago
|
from typing import Any, Callable, TypeVar, Union
|
||
|
|
||
|
from attr import attrib, field
|
||
|
|
||
|
class UnsupportedSubclassing(Exception): ...
|
||
|
|
||
|
_T = TypeVar("_T")
|
||
|
|
||
|
def __dataclass_transform__(
|
||
|
*,
|
||
|
eq_default: bool = ...,
|
||
|
order_default: bool = ...,
|
||
|
kw_only_default: bool = ...,
|
||
|
field_descriptors: tuple[Union[type, Callable[..., Any]], ...] = ...,
|
||
|
) -> Callable[[_T], _T]: ...
|
||
|
@__dataclass_transform__(field_descriptors=(attrib, field))
|
||
|
def define(cls: type[_T]) -> type[_T]: ...
|
||
|
|
||
|
frozen = define
|