Theia API Documentation v1.68.0
    Preparing search index...

    Interface InputBoxValidationMessage

    Represents a validation message for an InputBox.

    interface InputBoxValidationMessage {
        message: string;
        severity: InputBoxValidationSeverity;
    }
    Index

    Properties

    Properties

    message: string

    The validation message to display to the user.

    The severity level of the validation message.

    Note: When using InputBoxValidationSeverity.Error, the user will not be able to accept the input (e.g., by pressing Enter). Info and Warning severities will still allow the input to be accepted.