types: add __all__
This commit is contained in:
parent
df963542c1
commit
20e4c2c257
1 changed files with 8 additions and 0 deletions
|
@ -80,3 +80,11 @@ JidStr = Union[str, JID]
|
||||||
OptJidStr = Optional[Union[str, JID]]
|
OptJidStr = Optional[Union[str, JID]]
|
||||||
|
|
||||||
MAMDefault = Literal['always', 'never', 'roster']
|
MAMDefault = Literal['always', 'never', 'roster']
|
||||||
|
|
||||||
|
FilterString = Literal['in', 'out', 'out_sync']
|
||||||
|
|
||||||
|
__all__ = [
|
||||||
|
'Protocol', 'TypedDict', 'Literal', 'OptJid', 'JidStr', 'MAMDefault',
|
||||||
|
'PresenceTypes', 'PresenceShows', 'MessageTypes', 'IqTypes', 'MucRole',
|
||||||
|
'MucAffiliation', 'FilterString',
|
||||||
|
]
|
||||||
|
|
Loading…
Reference in a new issue