mirror of
				https://github.com/langgenius/dify.git
				synced 2025-10-31 10:53:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			395 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			395 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Locale } from '@/i18n'
 | |
| 
 | |
| export type ResponseHolder = {}
 | |
| 
 | |
| export type ConversationItem = {
 | |
|   id: string
 | |
|   name: string
 | |
|   inputs: Record<string, any> | null
 | |
|   introduction: string,
 | |
| }
 | |
| 
 | |
| export type SiteInfo = {
 | |
|   title: string
 | |
|   icon: string
 | |
|   icon_background: string
 | |
|   description: string
 | |
|   default_language: Locale
 | |
|   prompt_public: boolean
 | |
|   copyright?: string
 | |
|   privacy_policy?: string
 | |
| } | 
