class List extends GenericSuggestions<string[], string, ListSettings>import { List } from "https://dotland.deno.dev/x/cliffy@v0.19.1/prompt/mod.ts"; List prompt representation. MethodsprotectedaddChar(char: string): voidAdd char. protectedcomplete(): voidprotecteddeleteChar(): voidDelete char left. protectedformat(value: string[]): stringFormat output value. protectedgetCurrentInputValue(): stringprotectedgetTags(value?: string): Array<string>protectedgetValue(): stringGet input value. protectedinput(): stringprotectedregexp(): RegExpCreate list regex. protectedsuccess(value: string[]): string | undefinedprotectedtransform(value: string): string[]Map input value to output value. protectedvalidate(value: string): boolean | stringValidate input value. Static Methodsinject(value: string): voidInject prompt value. Can be used for unit tests or pre selections. prompt(options: string | ListOptions): Promise<string[]>Execute the prompt and show cursor on end.