mario-education 2.4.250-release → 2.4.251-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,10 @@
1
+ interface Props {
2
+ studentId?: number;
3
+ isTeacherStart?: string;
4
+ setIsTeacherStart?: Function;
5
+ setStudentId?: Function;
6
+ onClickStart?: Function;
7
+ handleClose?: any;
8
+ }
9
+ declare const DialogChooseTeacher: ({ handleClose, }: Props) => JSX.Element;
10
+ export default DialogChooseTeacher;
@@ -531,6 +531,7 @@ export interface FilterStudentFlag {
531
531
  startDate?: number | null;
532
532
  endDate?: number | null;
533
533
  type?: FLAG_TYPES;
534
+ isAdmin?: boolean;
534
535
  }
535
536
  export interface FilterStudentFlag {
536
537
  currentPage: number;