scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
18 lines (17 loc) • 478 B
TypeScript
import { EInputTypes } from '../enums';
import { IQuestion } from '../interfaces/i-question';
export declare class QuestionEntity implements IQuestion {
active: boolean;
createdAt: Date;
updatedAt: Date;
description: string;
id: string;
name: string;
value: string;
index: number;
level: number | null;
questionIds: string[] | null;
inputs: EInputTypes[] | null;
tags: string[];
constructor(data?: Partial<QuestionEntity>);
}