* refactor: page helpers for document transformation * refactor: update tranforamtion function name
13 lines
336 B
TypeScript
13 lines
336 B
TypeScript
// editor
|
|
import { TExtensions } from "@plane/editor";
|
|
|
|
/**
|
|
* @description extensions disabled in various editors
|
|
*/
|
|
export const useEditorFlagging = (): {
|
|
documentEditor: TExtensions[];
|
|
richTextEditor: TExtensions[];
|
|
} => ({
|
|
documentEditor: ["ai", "collaboration-cursor"],
|
|
richTextEditor: ["ai", "collaboration-cursor"],
|
|
});
|