@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
15 lines (13 loc) • 469 B
text/typescript
export { EditorBubble } from "./editor-bubble";
export { EditorBubbleItem } from "./editor-bubble-item";
export { SlashCommandMenu } from "./SlashCommandMenu";
export { ImageBubble } from "./image-bubble";
export { TableBubble } from "./table-bubble";
export type JSONContent = {
type?: string;
attrs?: Record<string, any>;
content?: JSONContent[];
marks?: { type: string; attrs?: Record<string, any> }[];
text?: string;
[key: string]: any;
};