forma-text
Version:
FormaText is a modern, feature-rich, and highly customizable React text editor with AI integration. It delivers a seamless and intuitive editing experience, supporting everything from simple text input to advanced rich content creation.
18 lines (14 loc) • 392 B
TypeScript
// index.d.ts
import * as React from 'react';
export interface FormaTextProps {
content?: string;
setContent?: (value: string) => void;
geminiApiKey?: string;
parentEditorClass?: string;
toolBarClass?: string;
textContentClass?: string;
theme?: string;
premiumApiKey?: string;
}
declare const FormaText: React.FC<FormaTextProps>;
export default FormaText;