All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
9 lines
291 B
TypeScript
9 lines
291 B
TypeScript
import { BlockType, LeafType, NodeTypes } from './ast-types';
|
|
interface Options {
|
|
nodeTypes: NodeTypes;
|
|
listDepth?: number;
|
|
ignoreParagraphNewline?: boolean;
|
|
}
|
|
export default function serialize(chunk: BlockType | LeafType, opts?: Options): string | undefined;
|
|
export {};
|