news-question-kind.ts
1 export const NewsQuestionKind = { 2 /** Text from an information news. */ 3 InformationText: 0, 4 /** Question where there's only text (only from an survey news). */ 5 SurveyText: 5, 6 7 TextInput: 1, 8 UniqueChoice: 2, 9 MultipleChoice: 3 10 } as const; 11 12 export type NewsQuestionKind = typeof NewsQuestionKind[keyof typeof NewsQuestionKind];