interface TypeChangeInputHintAction {
    action: "changeInputHint";
    fieldName: string;
    inputHint: string;
}

Properties

action: "changeInputHint"
fieldName: string

name of the Field Definition to update.

inputHint: string

New value to set. Must not be empty.

Generated using TypeDoc