taglib-ts
    Preparing search index...

    Interface ReadResult<T>

    Result type returned by the low-level ASF read helpers.

    interface ReadResult<T> {
        ok: boolean;
        value: T;
    }

    Type Parameters

    • T

      The type of the successfully read value.

    Index

    Properties

    Properties

    ok: boolean

    true when the expected number of bytes was available and read.

    value: T

    The value that was read. Undefined / zero when ok is false.