Interface ICellInputValidatorResponse

A response object returned from cell input validator

interface ICellInputValidatorResponse {
    message?: string;
    valid: boolean;
}

Properties

Properties

message?: string

Validation error message. Set only when input is invalid

valid: boolean

Flag indicating cell input is valid or not