base_ui/types/jahatTypes.ts

29 lines
507 B
TypeScript
Raw Permalink Normal View History

2025-02-01 09:34:55 +00:00
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 = [];