mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-03 20:33:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			126 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			126 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import tz from './timezone.json'
 | 
						|
 | 
						|
type Item = {
 | 
						|
  value: number | string
 | 
						|
  name: string
 | 
						|
}
 | 
						|
export const timezones: Item[] = tz
 |