Type Alias InputErrorCause

InputErrorCause: {
    actual: unknown;
    conditions: {
        actual: unknown;
        target: string;
    }[];
    expect: string;
    target: string;
}

Type declaration

  • actual: unknown

    The actual input value.

  • conditions: {
        actual: unknown;
        target: string;
    }[]
  • expect: string

    A description of the expected value -- eg: "a string".

  • target: string

    A description of the config location -- eg: "config.advice_variable".