mirror of
https://github.com/langgenius/dify-conversation.git
synced 2026-07-01 18:25:52 -04:00
28 lines
471 B
TypeScript
28 lines
471 B
TypeScript
export interface LocaleProps {
|
|
locale: string
|
|
}
|
|
|
|
export interface AppProps {
|
|
opening_statement: string
|
|
suggested_questions: any[]
|
|
suggested_questions_after_answer: {
|
|
enabled: boolean
|
|
}
|
|
more_like_this: {
|
|
enabled: boolean
|
|
}
|
|
user_input_form: any[]
|
|
}
|
|
|
|
export interface ConversationProps {
|
|
id: string
|
|
inputs: any
|
|
introduction: string
|
|
name: string
|
|
status: string
|
|
}
|
|
|
|
export interface ConversationsProps {
|
|
conversations: ConversationProps[]
|
|
}
|