mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-07-07 03:51:50 +08:00
19 lines
354 B
TypeScript
19 lines
354 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
|
|
description: string
|
|
default_language: Locale
|
|
prompt_public: boolean
|
|
copyright?: string
|
|
privacy_policy?: string
|
|
} |