Interface EncryptedMessage

The interface for encrypted message

interface EncryptedMessage {
    data: string;
    isText: boolean;
    nonce: string;
}

Properties

Properties

data: string
isText: boolean
nonce: string