MarkdownCell
Renders markdown in the overlay editor.
export interface MarkdownCell extends BaseGridCell {
readonly kind: GridCellKind.Markdown;
readonly data: string;
readonly readonly?: boolean;
}
data
Markdown.
readonly
Determines if the cell will accept edit events.
Last updated
Was this helpful?