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.
		
		
		
		
		
			
		
			
				
	
	
		
			14 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			14 lines
		
	
	
		
			329 B
		
	
	
	
		
			TypeScript
		
	
export type MsgDuplicateSearchOpenGroup = Array<{
 | 
						|
  sender: string;
 | 
						|
  serverTimestamp: number;
 | 
						|
  // senderBlinded?: string; // for a message we sent, we need a blinded id and an unblinded one
 | 
						|
}>;
 | 
						|
 | 
						|
export type UpdateLastHashType = {
 | 
						|
  convoId: string;
 | 
						|
  snode: string;
 | 
						|
  hash: string;
 | 
						|
  expiresAt: number;
 | 
						|
  namespace: number;
 | 
						|
};
 |