MGFeng's picture
Upload 2985 files
c867d8f verified
Raw
History Blame Contribute Delete
265 Bytes
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
}