Skip to content
Snippets Groups Projects
answer-scheme-interfaces.ts 261 B
Newer Older
  • Learn to ignore specific revisions
  • export interface AnswerSchemeValue {
      value: string;
      label: string;
    }
    
    export interface AnswerScheme {
      id: string;
      type: string;
      format?: string;
      multiple?: boolean;
      nullable?: boolean;
      values?: AnswerSchemeValue[];
      valuesComplete?: boolean;
    }