Interface Err

Carries the result of a failed input parsing.

interface Err {
    issues: Issue[];
    ok: false;
}

Properties

Properties

issues: Issue[]

The array of issues encountered during parsing.

ok: false