mirror of
https://github.com/streetwriters/notesnook.git
synced 2026-02-24 04:00:59 +01:00
3 lines
278 B
TypeScript
3 lines
278 B
TypeScript
import { Fragment, Node as ProsemirrorNode, Schema } from "prosemirror-model";
|
|
export declare function createTable(schema: Schema, rowsCount: number, colsCount: number, withHeaderRow: boolean, cellContent?: Fragment | ProsemirrorNode | Array<ProsemirrorNode>): ProsemirrorNode;
|