dfh-ui-library 1.12.615 → 1.12.617

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,11 +1,12 @@
1
1
  import React from "react";
2
- import { NoteItemProps } from "../../shared/models/components/common.model";
2
+ import { NoteItemProps, UrgentDataProps } from "../../shared/models/components/common.model";
3
3
  import { ITodoToggleRequestParams } from "../SideBarListView/todos";
4
4
  interface NoteViewProps {
5
5
  notes?: NoteItemProps[];
6
6
  addtionalClassesCheckboxLabel?: string;
7
7
  handleCheckboxToggle?: (req: ITodoToggleRequestParams) => void;
8
8
  isNoteHistory?: boolean;
9
+ option?: UrgentDataProps;
9
10
  }
10
11
  declare const NotesView: React.FC<NoteViewProps>;
11
12
  export default NotesView;