@factorialco/f0-react 3.12.0 → 4.0.1

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.
@@ -894,10 +894,8 @@ declare module "@tiptap/core" {
894
894
 
895
895
  declare module "@tiptap/core" {
896
896
  interface Commands<ReturnType> {
897
- videoEmbed: {
898
- setVideoEmbed: (options: {
899
- src: string;
900
- }) => ReturnType;
897
+ transcript: {
898
+ insertTranscript: (data: TranscriptData) => ReturnType;
901
899
  };
902
900
  }
903
901
  }
@@ -905,8 +903,10 @@ declare module "@tiptap/core" {
905
903
 
906
904
  declare module "@tiptap/core" {
907
905
  interface Commands<ReturnType> {
908
- transcript: {
909
- insertTranscript: (data: TranscriptData) => ReturnType;
906
+ videoEmbed: {
907
+ setVideoEmbed: (options: {
908
+ src: string;
909
+ }) => ReturnType;
910
910
  };
911
911
  }
912
912
  }