mario-education 2.2.8 → 2.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,5 +18,13 @@ declare const useCSVImport: () => {
18
18
  id: string;
19
19
  setType: import("react").Dispatch<import("react").SetStateAction<CSVType | null>>;
20
20
  upload: (file: any) => Promise<void>;
21
+ initImportReflection: any;
22
+ setInitImportReflection: import("react").Dispatch<any>;
23
+ onConfirm: (values: any) => Promise<void>;
24
+ CSVType: typeof CSVType;
25
+ dataFile: any;
26
+ setDataFile: import("react").Dispatch<any>;
27
+ setArrStudent: import("react").Dispatch<any>;
28
+ arrStudent: any;
21
29
  };
22
30
  export default useCSVImport;
@@ -7,6 +7,9 @@ export declare type QuantityReport = {
7
7
  teacherPercentage: number;
8
8
  studentPercentage: number;
9
9
  assistantPercentage: number;
10
+ numberOfTeachers: number;
11
+ numberOfStudents: number;
12
+ numberOfAssistants: number;
10
13
  };
11
14
  export declare type SkillReportItem = {
12
15
  skillName: string;
@@ -1 +1,3 @@
1
1
  export declare const importCSV: (formData: FormData, subFolder: string) => Promise<import("axios").AxiosResponse<any>>;
2
+ export declare const importStudentCSV: (formData: FormData) => Promise<import("axios").AxiosResponse<any>>;
3
+ export declare const importClassReflectionCSV: (formData: FormData) => Promise<import("axios").AxiosResponse<any>>;