Type that represents an error when validating data to be stored in a cell

interface ValidationError {
    message: string;
    type: "ValidationError";
}

Properties

Properties

message: string

End user message describing the problem

type: "ValidationError"

Discriminated union tag