mario-core 2.8.4 → 9000.0.0

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.
@@ -6,4 +6,3 @@ export declare const update: (data: any) => Promise<import("axios").AxiosRespons
6
6
  export declare const remove: (id: string) => Promise<import("axios").AxiosResponse<any>>;
7
7
  export declare const getAllStudent: (filter?: Filter | undefined) => Promise<import("axios").AxiosResponse<any>>;
8
8
  export declare const changePassword: (formData: any) => Promise<import("axios").AxiosResponse<any>>;
9
- export declare const forgotChangePassword: (data: any) => Promise<import("axios").AxiosResponse<any>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mario-core",
3
- "version": "2.8.4",
3
+ "version": "9000.0.0",
4
4
  "description": "Contains core components && functions for Mario project",
5
5
  "author": "brss",
6
6
  "license": "MIT",
@@ -1,7 +0,0 @@
1
- import { FC } from "react";
2
- interface Props {
3
- title?: string;
4
- descriptions?: string;
5
- }
6
- declare const BlockForgotPass: FC<Props>;
7
- export default BlockForgotPass;
@@ -1,7 +0,0 @@
1
- import { FC } from "react";
2
- import { Notification } from "../../../types/Notification";
3
- interface Props {
4
- notificationList: Notification[];
5
- }
6
- declare const NotificationList: FC<Props>;
7
- export default NotificationList;