fix(ui): change tab names
fix(api): change api url
This commit is contained in:
23
src/types/sheet.ts
Normal file
23
src/types/sheet.ts
Normal file
@ -0,0 +1,23 @@
|
||||
interface CreatedBy {
|
||||
id: string;
|
||||
name: string;
|
||||
email: string;
|
||||
}
|
||||
|
||||
export interface PracticeSheet {
|
||||
title: string;
|
||||
difficulty: string;
|
||||
time_limit: number;
|
||||
description: string;
|
||||
is_locked: boolean;
|
||||
id: string;
|
||||
created_by_id: string;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
questions_count: number;
|
||||
topics: string[];
|
||||
created_by: CreatedBy;
|
||||
modules: string[];
|
||||
user_status: string;
|
||||
modules_count: number;
|
||||
}
|
||||
11
src/types/testdate.ts
Normal file
11
src/types/testdate.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import type { ReactNode } from "react";
|
||||
|
||||
export interface TestDate {
|
||||
action: ReactNode;
|
||||
test_date: string;
|
||||
registration_deadline: string;
|
||||
late_registration_deadline: string;
|
||||
location: string;
|
||||
is_digital: boolean;
|
||||
id: string;
|
||||
}
|
||||
Reference in New Issue
Block a user