mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 14:01:45 +02:00
14 lines
288 B
TypeScript
14 lines
288 B
TypeScript
// editor
|
|
import { TExtensions } from "@plane/editor";
|
|
|
|
/**
|
|
* @description extensions disabled in various editors
|
|
*/
|
|
export const useEditorFlagging = (): {
|
|
documentEditor: TExtensions[];
|
|
richTextEditor: TExtensions[];
|
|
} => ({
|
|
documentEditor: ["ai"],
|
|
richTextEditor: ["ai"],
|
|
});
|