Onionr/src/onionrtypes/__init__.py

13 lines
328 B
Python
Raw Normal View History

from typing import NewType
UserID = NewType('UserID', str)
UserIDSecretKey = NewType('UserIDSecretKey', str)
2019-11-04 10:52:38 +00:00
DeterministicKeyPassphrase = NewType('DeterministicKeyPassphrase', str)
2019-11-16 04:18:38 +00:00
BlockHash = NewType('BlockHash', str)
OnboardingConfig = NewType('OnboardingConfig', str)
JSONSerializable = NewType('JSONSerializable', str)