AppFlowy/frontend/appflowy_web_app/src/slate-editor.d.ts
Kilu.He 4d42c9ea68
feat: support document apply remote events (#5436)
* feat: support document apply remote events

* fix: add tests for database

* fix: add test for filter,sort and group

* fix: jest ci

* fix: jest ci

* fix: jest ci

* fix: jest ci

* fix: cypress test
2024-06-03 11:20:45 +08:00

47 lines
924 B
TypeScript

import { ReactEditor } from 'slate-react';
interface EditorInlineAttributes {
bold?: boolean;
italic?: boolean;
underline?: boolean;
strikethrough?: boolean;
font_color?: string;
bg_color?: string;
href?: string;
code?: boolean;
font_family?: string;
formula?: string;
prism_token?: string;
class_name?: string;
mention?: {
type: string;
// inline page ref id
page?: string;
// reminder date ref id
date?: string;
};
}
type CustomElement = {
children: (CustomText | CustomElement)[];
type?: string;
data?: unknown;
blockId?: string;
textId?: string;
relationId?: string;
};
type CustomText = { text: string } & EditorInlineAttributes;
declare module 'slate' {
interface CustomTypes {
Editor: BaseEditor & ReactEditor;
Element: CustomElement;
Text: CustomText;
}
interface BaseEditor {
isEmbed: (element: CustomElement) => boolean;
}
}