import { type TextInsertableNode } from "https://deno.land/x/deno2node@v1.10.0/src/deps.deno.ts";
Methods
insertText(pos: number, textOrWriterFunction: string | WriterFunction): this
Inserts text within the body of the node.
WARNING: This will forget any previously navigated descendant nodes.
replaceText(range: [number, number], textOrWriterFunction: string | WriterFunction): this
Replaces text within the body of the node.
WARNING: This will forget any previously navigated descendant nodes.
import { TextInsertableNode } from "https://deno.land/x/deno2node@v1.10.0/src/deps.deno.ts";
Type Parameters
T extends Constructor<TextInsertableNodeExtensionType>
Parameters
Base: T