mirror of
https://github.com/langgenius/dify.git
synced 2025-07-06 08:38:47 +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
|
||
|
}
|