UNPKG

scheunemann-interfaces

Version:
17 lines (16 loc) 391 B
import { EInputTypes } from '../enums/input-types.enum'; export interface IQuestion { active: boolean; createdAt: Date; updatedAt: Date; id: string; name: string; description: string; index: number; value: string; questionIds: string[] | null; level: number | null; tags: string[]; inputs: EInputTypes[] | null; childrens?: IQuestion[]; }