Documentation
    Preparing search index...

    Type Alias BaseAttributeDefinition<ComponentCount, ComponentType>

    BaseAttributeDefinition: ComponentType extends {
        normalized: infer TNormalized;
        type: infer TType;
    }
        ? TType extends AccessorComponentType
            ? TNormalized extends boolean
                ? {
                    componentCount: ComponentCount["componentCount"];
                    componentSize: AccessorComponentTypeSize[TType];
                    componentType: TType;
                    normalized: TNormalized;
                }
                : never
            : never
        : never

    No description provided.

    Type Parameters