import { SignalService } from '../protobuf'; export interface Quote { id: number; // this is in fact a uint64 so we will have an issue author: string; attachments: Array; text: string; referencedMessageNotFound: boolean; } export interface EnvelopePlus extends SignalService.Envelope { senderIdentity: string; // Sender's pubkey after it's been decrypted (for medium groups) receivedAt: number; // We only seem to set this for public messages? id: string; }