class AnsiEscapeimport { AnsiEscape } from "https://dotland.deno.dev/x/cliffy@v0.6.0/packages/ansi-escape/mod.ts"; ConstructorsnewprotectedAnsiEscape(file: Deno.WriterSync)MethodscursorBackward(count?: number)Move cursor left by n lines. cursorDown(count?: number)Move cursor down by n lines. cursorForward(count?: number)Move cursor right by n lines. cursorHide()Hide cursor. cursorLeft()Move cursor to first column of current row. cursorMove(x: number, y: number)Move cursor by offset. cursorNextLine(count?: number)Move cursor to the beginning of the line n lines down. cursorPrevLine(count?: number)Move cursor to the beginning of the line n lines up. cursorRestore()Restore cursor. cursorSave()Save cursor. cursorShow()Show cursor. cursorTo(x: number, y?: number)Move cursor to x, y, counting from the top left corner. cursorUp(count?: number)Move cursor up by n lines. eraseDown(count?: number)Clear screen down. eraseLine()Clear current line. eraseLineEnd()Clear to line end. eraseLines(count: number)Clear n line's up. eraseLineStart()Clear to line start. eraseScreen()Clear screen. eraseUp(count?: number)Clear screen up. image(buffer: Uint8Array, options?: ImageOptions)Render image. link(text: string, url: string)Render link. scrollDown(count?: number)Scroll window down by n lines. scrollUp(count?: number)Scroll window up by n lines. write(code: string): thisWrite to file. Static Methodsfrom(file: Deno.WriterSync): AnsiEscapeCreate instance from file.