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