@factorialco/f0-react 2.22.0 → 2.24.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.
@@ -869,10 +869,8 @@ declare module "@tiptap/core" {
869
869
 
870
870
  declare module "@tiptap/core" {
871
871
  interface Commands<ReturnType> {
872
- videoEmbed: {
873
- setVideoEmbed: (options: {
874
- src: string;
875
- }) => ReturnType;
872
+ transcript: {
873
+ insertTranscript: (data: TranscriptData) => ReturnType;
876
874
  };
877
875
  }
878
876
  }
@@ -880,8 +878,10 @@ declare module "@tiptap/core" {
880
878
 
881
879
  declare module "@tiptap/core" {
882
880
  interface Commands<ReturnType> {
883
- transcript: {
884
- insertTranscript: (data: TranscriptData) => ReturnType;
881
+ videoEmbed: {
882
+ setVideoEmbed: (options: {
883
+ src: string;
884
+ }) => ReturnType;
885
885
  };
886
886
  }
887
887
  }