Interface ValidationErrorMessage

Represents a validation failure.

interface ValidationErrorMessage {
    message: string;
    path: readonly string[];
}

Properties

Properties

message: string
path: readonly string[]