mirror of
				https://github.com/datahub-project/datahub.git
				synced 2025-11-03 20:27:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			547 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			547 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import { NotificationEvent } from 'wherehows-web/services/notifications';
 | 
						|
 | 
						|
/**
 | 
						|
 * Base animation speed for the banner alerts.
 | 
						|
 * NOTE: This value corresponds with animation speed value set in styles/abstracts/_variables.scss
 | 
						|
 */
 | 
						|
export const bannerAnimationSpeed = 0.6;
 | 
						|
 | 
						|
/**
 | 
						|
 * Base message for 2 factor auth banner message for the login screen.
 | 
						|
 */
 | 
						|
export const twoFABannerMessage =
 | 
						|
  'We have enabled 2-factor authentication. Login now requires your password + Symantec VIP Token.';
 | 
						|
 | 
						|
export const twoFABannerType = NotificationEvent['confirm'];
 |