class Secret extends GenericInput<string, string, SecretSettings>import { Secret } from "https://dotland.deno.dev/x/cliffy@v0.19.1/prompt/mod.ts"; Secret prompt representation. Methodsprotectedformat(value: string): stringFormat output value. protectedgetValue(): stringGet input input. protectedinput(): stringprotectedread(): Promise<boolean>Read user input. protectedtransform(value: string): string | undefinedMap 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 | SecretOptions): Promise<string>Execute the prompt and show cursor on end.