@jiminp/tooltool
    Preparing search index...

    Interface Ok<T>

    A successful result.

    interface Ok<T> {
        ok: true;
        value: T;
    }

    Type Parameters

    • T

      Success value type.

    Index

    Properties

    Properties

    ok: true
    value: T