@webdeveric/utils
    Preparing search index...

    Type Alias WithPropertyMap<Type, AttributeMap>

    WithPropertyMap: Omit<Type, keyof AttributeMap> & UnionToIntersection<
        {
            [Property in keyof AttributeMap]: ApplyPropertyAttribute<
                GetPropertyRecordFromAttribute<Type, Property, AttributeMap[Property]>,
                AttributeMap[Property],
                RetainMutability<Type, Property>,
            >
        }[keyof AttributeMap],
    >

    Type Parameters