@factorialco/f0-react 2.52.0 → 2.53.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.
@@ -881,8 +881,9 @@ declare module "@tiptap/core" {
881
881
 
882
882
  declare module "@tiptap/core" {
883
883
  interface Commands<ReturnType> {
884
- moodTracker: {
885
- insertMoodTracker: (data: MoodTrackerData) => ReturnType;
884
+ enhanceHighlight: {
885
+ setEnhanceHighlight: (from: number, to: number) => ReturnType;
886
+ clearEnhanceHighlight: () => ReturnType;
886
887
  };
887
888
  }
888
889
  }
@@ -890,9 +891,8 @@ declare module "@tiptap/core" {
890
891
 
891
892
  declare module "@tiptap/core" {
892
893
  interface Commands<ReturnType> {
893
- enhanceHighlight: {
894
- setEnhanceHighlight: (from: number, to: number) => ReturnType;
895
- clearEnhanceHighlight: () => ReturnType;
894
+ moodTracker: {
895
+ insertMoodTracker: (data: MoodTrackerData) => ReturnType;
896
896
  };
897
897
  }
898
898
  }