6 lines
189 B
Python
6 lines
189 B
Python
from typing import Union
|
|
from . import Attribute, _FilterType
|
|
|
|
def include(*what: Union[type, Attribute]) -> _FilterType: ...
|
|
def exclude(*what: Union[type, Attribute]) -> _FilterType: ...
|