mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-30 21:14:12 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			312 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import i18n from './i18n';
 | |
| import base64 from './base64';
 | |
| import themeColor from './theme-color';
 | |
| import tag from './tag';
 | |
| import stylus from './stylus';
 | |
| import typescript from './typescript';
 | |
| 
 | |
| export default (lang, locale) => [
 | |
| 	i18n(lang, locale),
 | |
| 	base64(),
 | |
| 	themeColor(),
 | |
| 	tag(),
 | |
| 	stylus(),
 | |
| 	typescript()
 | |
| ];
 |