feat: support var type paragraph

This commit is contained in:
Joel
2023-09-12 10:42:57 +08:00
parent bed53e4ad2
commit a01fc9ef49
3 changed files with 33 additions and 17 deletions

View File

@ -3,7 +3,7 @@ import type { Locale } from '@/i18n'
export type PromptVariable = {
key: string
name: string
type: 'string' | 'number' | 'select'
type: string
default?: string | number
options?: string[]
max_length?: number