dfh-ui-library 1.12.443 → 1.12.445

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,7 @@
1
1
  import React from "react";
2
- import { ListMasterDataProps, NoteProps, UrgentDataProps } from "../../shared/models/components/common.model";
2
+ import { ListMasterDataProps, UrgentDataProps } from "../../shared/models/components/common.model";
3
3
  export interface ITodoToggleRequestParams {
4
4
  noteId?: string;
5
- note?: NoteProps;
6
5
  actionedUser?: string;
7
6
  patient?: string;
8
7
  toggleOptions: {
@@ -16,7 +15,7 @@ interface todosProps {
16
15
  listMasterData?: ListMasterDataProps;
17
16
  detailAction?: (rowId: string | undefined) => void;
18
17
  handleNameClick?: (id?: string) => void;
19
- toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => Promise<void>;
18
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
20
19
  }
21
20
  declare const Todos: React.FC<todosProps>;
22
21
  export default Todos;
@@ -689,7 +689,7 @@ export interface SideBarListProps {
689
689
  detailAction?: (value: string | undefined) => void;
690
690
  handleNameClick?: (id?: string) => void;
691
691
  handleChallengeHeaderClick?: (patientId?: string, challengeId?: string) => void;
692
- toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => Promise<void>;
692
+ toggleTodoCheckbox?: (req: ITodoToggleRequestParams) => void;
693
693
  }
694
694
  export interface UrgentDataProps {
695
695
  fullName?: string | undefined;