mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 05:21:14 +02:00
* refactor: page helpers for document transformation * refactor: update tranforamtion function name
14 lines
336 B
TypeScript
14 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"],
|
|
});
|