tetrons 2.3.68 → 2.3.70

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.
@@ -16986,6 +16986,9 @@ function EditorContent({ apiKey }) {
16986
16986
  ));
16987
16987
  }
16988
16988
 
16989
+ // src/browser.ts
16990
+ var browser_default = EditorContent;
16989
16991
  export {
16990
- EditorContent
16992
+ EditorContent,
16993
+ browser_default as default
16991
16994
  };
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+
3
+ type EditorContentProps = {
4
+ apiKey: string;
5
+ };
6
+ declare function EditorContent({ apiKey }: EditorContentProps): React.JSX.Element;
7
+
8
+ export { EditorContent, EditorContent as default };