@contentstack/live-preview-utils
Version:
Contentstack provides the Live Preview SDK to establish a communication channel between the various Contentstack SDKs and your website, transmitting live changes to the preview pane.
24 lines (21 loc) • 686 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { CslpData } from '../../cslp/types/cslp.types.js';
import { ISchemaFieldMap } from '../utils/types/index.types.js';
import '../../cms/types/contentTypeSchema.types.js';
interface CommentIconProps {
fieldMetadata: CslpData;
fieldSchema: ISchemaFieldMap;
invertTooltipPosition: boolean;
}
interface Field {
uid: string;
path: string;
og_path: string;
}
interface IActiveDiscussion {
uid: string;
title?: string;
field?: Field;
}
declare function CommentIcon(props: CommentIconProps): react_jsx_runtime.JSX.Element | undefined;
export { type IActiveDiscussion, CommentIcon as default };