UNPKG

@lexical/markdown

Version:

This package contains Markdown helpers and functionality for Lexical.

14 lines (13 loc) 536 B
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * */ import type { ElementNode } from 'lexical'; import { Transformer } from './MarkdownTransformers'; /** * Renders string from markdown. The selection is moved to the start after the operation. */ export declare function createMarkdownExport(transformers: Array<Transformer>, shouldPreserveNewLines?: boolean): (node?: ElementNode) => string;