2023-01-13 02:28:26 +00:00
|
|
|
from typing import Any, Union
|
|
|
|
|
2023-01-12 01:04:47 +00:00
|
|
|
from . import Attribute, _FilterType
|
|
|
|
|
|
|
|
def include(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...
|
|
|
|
def exclude(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...
|