mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			369 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			369 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import i18n from './i18n';
 | 
						|
import license from './license';
 | 
						|
import fa from './fa';
 | 
						|
import base64 from './base64';
 | 
						|
import themeColor from './theme-color';
 | 
						|
import tag from './tag';
 | 
						|
import stylus from './stylus';
 | 
						|
import typescript from './typescript';
 | 
						|
 | 
						|
export default lang => [
 | 
						|
	i18n(lang),
 | 
						|
	license(),
 | 
						|
	fa(),
 | 
						|
	base64(),
 | 
						|
	themeColor(),
 | 
						|
	tag(),
 | 
						|
	stylus(),
 | 
						|
	typescript()
 | 
						|
];
 |