base_ui/types/jahatTypes.ts
2025-02-01 13:04:55 +03:30

29 lines
507 B
TypeScript

export type Problem = {
id: number;
title: string;
};
export type Properties = {
1: string;
2: string;
3: string;
4: string;
};
export type Types = {
talk: number;
issue: number;
answer: number;
crition: number;
text: number;
qasection: number;
sanad: number;
research: number;
rezumeh: number;
rgsection: number;
support: number;
task: number;
};
export type SectionsCommentsToShow = string | number | null | undefined;
export type Errors = {};
export type Files = [];