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.
		
		
		
		
		
			
	
	
		
			
				
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Note: The types defined in this file have to be self contained. | 
					
						
							|  |  |  |  * We must not import anything in this file, especially not something relying on the window object (even indirectly, through an import chain). | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * e.g. import type { YourTypeHere } from 'path/to/ReduxTypes'; | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export type SessionSettingCategory = | 
					
						
							|  |  |  |   | 'privacy' | 
					
						
							|  |  |  |   | 'notifications' | 
					
						
							|  |  |  |   | 'conversations' | 
					
						
							|  |  |  |   | 'messageRequests' | 
					
						
							|  |  |  |   | 'appearance' | 
					
						
							|  |  |  |   | 'permissions' | 
					
						
							|  |  |  |   | 'help' | 
					
						
							|  |  |  |   | 'recoveryPassword' | 
					
						
							|  |  |  |   | 'clearData'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export type PasswordAction = 'set' | 'change' | 'remove' | 'enter'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | export type EditProfilePictureModalProps = { | 
					
						
							|  |  |  |   avatarPath: string | null; | 
					
						
							|  |  |  |   profileName: string | undefined; | 
					
						
							|  |  |  |   ourId: string; | 
					
						
							|  |  |  | }; |