Files
windmill/frontend/src/lib/components/instanceSettings.ts
T
2023-10-02 14:45:29 +02:00

23 lines
371 B
TypeScript

export interface Setting {
label: string
description?: string
placeholder?: string
cloudonly?: boolean
ee_only?: string
tooltip?: string
key: string
fieldType:
| 'text'
| 'number'
| 'boolean'
| 'password'
| 'select'
| 'textarea'
| 'seconds'
| 'email'
| 'license_key'
storage: SettingStorage
}
export type SettingStorage = 'setting' | 'config'