tetrons 2.3.21 → 2.3.22

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.
package/dist/index.d.ts CHANGED
@@ -1,12 +1,6 @@
1
- import React from 'react';
2
-
3
- type EditorContentProps = {
4
- apiKey: string;
5
- };
6
- declare function EditorContent({ apiKey }: EditorContentProps): React.JSX.Element;
7
-
8
- declare function initializeTetrons(apiKey: string): Promise<void>;
9
- declare function getTetronsVersion(): "" | "free" | "pro" | "premium" | "platinum";
10
- declare function isApiKeyValid(): boolean;
11
-
12
- export { EditorContent, EditorContent as default, getTetronsVersion, initializeTetrons, isApiKeyValid };
1
+ import EditorContent from "./components/tetrons/EditorContent";
2
+ export declare function initializeTetrons(apiKey: string): Promise<void>;
3
+ export declare function getTetronsVersion(): "" | "free" | "pro" | "premium" | "platinum";
4
+ export declare function isApiKeyValid(): boolean;
5
+ export { EditorContent };
6
+ export default EditorContent;