diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/api/question.ts | 16 | 
1 files changed, 11 insertions, 5 deletions
| diff --git a/src/api/question.ts b/src/api/question.ts index e051459..bdd6b99 100644 --- a/src/api/question.ts +++ b/src/api/question.ts @@ -1,11 +1,17 @@  export enum QuestionType { -    Text, -    Checkbox, -    Radio, -    Code +    TextArea = "textarea", +    Checkbox = "checkbox", +    Radio = "radio", +    Code = "code", +    Select = "select", +    ShortText = "short_text", +    Range = "range", +    Section = "section"  }  export interface Question { +    id: string,      name: string, -    type: QuestionType +    type: QuestionType, +    data: { [key: string]: any }  } | 
