Skip to main content

tables

Documentation / editor/modules/tables

table()​

function table(editor: Editor): object;

Defined in: editor/modules/tables.ts:26

Parameters​

ParameterType

editor

Editor

Returns​

object

NameTypeDefined in

commands

{ addColumn: (direction: -1 | 1) => void; addColumnLeft: () => void; addColumnRight: () => void; addRow: (direction: -1 | 1) => void; addRowAbove: () => void; addRowBelow: () => void; deleteColumn: () => void; deleteRow: () => void; deleteTable: () => void; insertTable: (rows: number, columns: number) => void; }

editor/modules/tables.ts:53