@firecms/core
Version:
Awesome Firebase/Firestore-based headless open-source CMS
17 lines (16 loc) • 489 B
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;
};