@blockchaincommons/known-values - v1.0.0-beta.4
    Preparing search index...

    Interface LoadResult

    What loadFromConfig reports: the values by codepoint, the directories processed, the errors met.

    interface LoadResult {
        values: ReadonlyMap<bigint, KnownValue>;
        filesProcessed: readonly string[];
        errors: readonly LoadFailure[];
    }
    Index
    values: ReadonlyMap<bigint, KnownValue>

    The loaded values by codepoint, a later directory or file replacing an earlier one; iteration is in first-seen codepoint order.

    filesProcessed: readonly string[]

    The directories whose entries were read to the end (missing ones included).

    errors: readonly LoadFailure[]

    Every error met, with the file or directory it belongs to.