Type alias RealmDictionaryRemappedModelPart<T>

RealmDictionaryRemappedModelPart<T>: {
    [K in ExtractPropertyNamesOfType<T, AnyDictionary>]?: T[K] extends export=.Types.Dictionary<infer ValueType>
        ? {
            [key: string]: ValueType;
        }
        : never
}

Exchanges properties defined as Dictionary with an optional key to mixed value object.

Type Parameters

  • T

Generated using TypeDoc