import { redo, undo } from "prosemirror-history"; import { UxCommand } from "../constants"; import { Command } from "../types"; export const ux = { [UxCommand.Redo]: redo as Command, [UxCommand.Undo]: undo as Command };