Documents for @litert/utils-ts-types
    Preparing search index...

    Type Alias IDict<T, TKey>

    IDict: Record<TKey, T>

    The type stands for a map-like object (just a simple object, not a Map class instance).

    This type also could be used to express a dictionary, if the second type parameter is specified.

    Type Parameters

    • T = any
    • TKey extends string | number | symbol = string | number | symbol