function cursorToimport { cursorTo } from "https://dotland.deno.dev/std@0.177.0/node/readline.ts"; cursorTo(stream: WritableStream,x: number,y?: number,callback?: () => void,): booleanThe readline.cursorTo() method moves cursor to the specified position in a given TTY stream. The readline.cursorTo() method moves cursor to the specified position in a given TTY stream. Parametersstream: WritableStreamInvoked once the operation completes. x: numberoptionaly: numberoptionalcallback: () => voidReturnsbooleanfalse if stream wishes for the calling code to wait for the 'drain' event to be emitted before continuing to write additional data; otherwise true. import cursorToimport { cursorTo } from "https://dotland.deno.dev/std@0.177.0/node/readline.ts";