6 lines
418 B
TypeScript
6 lines
418 B
TypeScript
import { serializedNodeWithId, idNodeMap, INode } from './types';
|
|
export declare function addHoverClass(cssText: string): string;
|
|
export declare function buildNodeWithSN(n: serializedNodeWithId, doc: Document, map: idNodeMap, skipChild?: boolean, HACK_CSS?: boolean): INode | null;
|
|
declare function rebuild(n: serializedNodeWithId, doc: Document, HACK_CSS?: boolean): [Node | null, idNodeMap];
|
|
export default rebuild;
|