mario-education 2.4.232-release → 2.4.234-release

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.
@@ -0,0 +1,2 @@
1
+ import { CSSProperties } from "react";
2
+ export declare const style: CSSProperties;
@@ -9,5 +9,8 @@ declare const useRevertUser: () => {
9
9
  userTo: Student | null;
10
10
  setUserTo: import("react").Dispatch<import("react").SetStateAction<Student | null>>;
11
11
  handelMergeDataUser: () => Promise<void>;
12
+ setAcademicYerId: import("react").Dispatch<import("react").SetStateAction<number>>;
13
+ academicYearId: number;
14
+ handleUpdateGrade: () => Promise<void>;
12
15
  };
13
16
  export default useRevertUser;
@@ -1,2 +1,3 @@
1
1
  export declare const revertUser: (id: string) => Promise<import("axios").AxiosResponse<any>>;
2
2
  export declare const mergeData: (fromId: string, toId: string) => Promise<import("axios").AxiosResponse<any>>;
3
+ export declare const updateGrade: (academicYearId: number) => Promise<import("axios").AxiosResponse<any>>;