UNPKG

resolvo-cms

Version:

Headless CMS for Resolvo websites with real-time content management

13 lines 572 B
import { ResolvoCMSClient } from '../ResolvoCMSClient'; import { CMSContent } from '../../types'; export interface ContentEditorProps { client: ResolvoCMSClient; schemaId: string; contentId?: string; onSave?: (content: CMSContent) => void; onPublish?: (content: CMSContent) => void; onCancel?: () => void; className?: string; } export declare function ContentEditor({ client, schemaId, contentId, onSave, onPublish, onCancel, className }: ContentEditorProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ContentEditor.d.ts.map