@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
9 lines (8 loc) • 335 B
TypeScript
import { Node } from "prosemirror-model";
import { EditorView } from "prosemirror-view";
import { TableView } from "../../nodes/TableView";
export default class TableNodeView extends TableView {
constructor(node: Node, colMinWidth: number, view: EditorView);
update(node: Node): boolean;
_updateMargin(node: Node): void;
}