-
-
Notifications
You must be signed in to change notification settings - Fork 0
Types
martiliones edited this page Jun 12, 2023
·
1 revision
Message type
-
Type
enum MessageType { basic = "basic", rich = "rich", signal = "signal", }
-
Type
interface AddressObject { address: string; }
-
Type
interface PublicKeyObject { publicKey: string; }
-
Type
interface UsernameObject { username: string; }
Object that contains either address
or publicKey
field
-
Type
type AddressOrPublicKeyObject = PublicKeyObject | AddressObject;
-
References
-
Type
type TransactionQuery = { and: T; or: T } & T;
-
Type
type UsernameOrPublicKeyObject = PublicKeyObject | UsernameObject;
-
References