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.
		
		
		
		
		
			
		
			
				
	
	
		
			26 lines
		
	
	
		
			687 B
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			26 lines
		
	
	
		
			687 B
		
	
	
	
		
			TypeScript
		
	
| /**
 | |
|  * 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'
 | |
|   | 'message-requests'
 | |
|   | 'appearance'
 | |
|   | 'permissions'
 | |
|   | 'help'
 | |
|   | 'recovery-password'
 | |
|   | 'clear-data';
 | |
| 
 | |
| export type PasswordAction = 'set' | 'change' | 'remove' | 'enter';
 | |
| 
 | |
| export type EditProfilePictureModalProps = {
 | |
|   avatarPath: string | null;
 | |
|   profileName: string | undefined;
 | |
|   ourId: string;
 | |
| };
 |