mirror of
https://github.com/langgenius/dify.git
synced 2025-07-05 16:22:23 +00:00
17 lines
249 B
TypeScript
17 lines
249 B
TypeScript
export type CreateExternalAPIReq = {
|
|
name: string
|
|
settings: {
|
|
endpoint: string
|
|
api_key: string
|
|
}
|
|
}
|
|
|
|
export type FormSchema = {
|
|
variable: string
|
|
type: 'text' | 'secret'
|
|
label: {
|
|
[key: string]: string
|
|
}
|
|
required: boolean
|
|
}
|