mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-05-14 04:28:17 +08: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
|
|
}
|