選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }