interface PromptOptions {
    autoFocus?: boolean;
    helperText?: string;
    hintText?: string;
    textFieldProperties?: Partial<Partial<Pick<TextField, keyof TextField>>>;
}

Hierarchy

  • PromptOptions
    • PromptOptions

Properties

autoFocus?: boolean
helperText?: string

Gets or sets the helper text to display in the input box.

hintText?: string

Gets or sets the hint text to display in the input box.

textFieldProperties?: Partial<Partial<Pick<TextField, keyof TextField>>>

Optional object to set any property to the textfield!

Generated using TypeDoc