mirror of
https://github.com/bakhirev/assayo.git
synced 2025-04-20 00:29:13 +00:00
12 lines
246 B
TypeScript
12 lines
246 B
TypeScript
import IQuestion from './Question';
|
|
import IResult from './Result';
|
|
|
|
export default interface IQuize {
|
|
id?: number;
|
|
icon?: string;
|
|
title?: string;
|
|
description?: string;
|
|
button?: string;
|
|
questions: IQuestion[];
|
|
results: IResult[];
|
|
}
|