14 lines
536 B
TypeScript
14 lines
536 B
TypeScript
/**
|
|
* 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;
|