Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

declarations.ts 249B

12345678910111213141516
  1. export type CreateExternalAPIReq = {
  2. name: string
  3. settings: {
  4. endpoint: string
  5. api_key: string
  6. }
  7. }
  8. export type FormSchema = {
  9. variable: string
  10. type: 'text' | 'secret'
  11. label: {
  12. [key: string]: string
  13. }
  14. required: boolean
  15. }