Interface Invalid<T>

interface Invalid<T> {
    error: ValidationErrors<T>;
    input: unknown;
    parsed: null;
    valid: false;
}

Type Parameters

  • T

    The validated type

Properties

Properties

input: unknown
parsed: null
valid: false