You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			17 lines
		
	
	
		
			463 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			17 lines
		
	
	
		
			463 B
		
	
	
	
		
			TypeScript
		
	
import { SignalService } from '../protobuf';
 | 
						|
 | 
						|
export interface Quote {
 | 
						|
  id: any;
 | 
						|
  author: any;
 | 
						|
  attachments: Array<any>;
 | 
						|
  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?
 | 
						|
  unidentifiedDeliveryReceived: boolean;
 | 
						|
  id: string;
 | 
						|
}
 |