blob: f7b63f1bb45e4c21acd2f81c1f290da72bebe532 (
plain) (
blame)
1
2
3
4
5
6
7
|
from typing import Any, Union
from . import Attribute, _FilterType
def include(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...
def exclude(*what: Union[type, Attribute[Any]]) -> _FilterType[Any]: ...
|