2025-05-30 19:32:58 +03:00
|
|
|
import {UniqueItem} from "./common.ts";
|
|
|
|
|
|
|
|
|
|
export interface Survey extends UniqueItem{
|
|
|
|
|
title: string;
|
2025-05-31 10:57:27 +03:00
|
|
|
description: string;
|
2025-05-30 19:32:58 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2025-05-31 10:57:27 +03:00
|
|
|
interface Statement extends UniqueItem{
|
|
|
|
|
text: string;
|
|
|
|
|
score_variable: number;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export interface QuestionPair extends UniqueItem{
|
|
|
|
|
|
|
|
|
|
}
|