Doubter - v5.1.1-next.e4e15ab
    Preparing search index...

    Interface Ok<Value>

    Carries the result of a successful input parsing.

    interface Ok<Value = any> {
        ok: true;
        value: Value;
    }

    Type Parameters

    • Value = any

      The output value.

    Index

    Properties

    Properties

    ok: true
    value: Value

    The output value.