rhodonite
    Preparing search index...

    Variable ComponentTypeConst

    ComponentType: Readonly<
        {
            Bool: ComponentTypeClass<"BOOL">;
            Byte: ComponentTypeClass<"BYTE">;
            Double: ComponentTypeClass<"DOUBLE">;
            Float: ComponentTypeClass<"FLOAT">;
            from: (index: number) => ComponentTypeEnum;
            fromGlslString: (str_: string) => ComponentTypeEnum;
            fromString: (str: string) => ComponentTypeEnum;
            fromTypedArray: (typedArray: TypedArray) => ComponentTypeEnum;
            fromWgslString: (str_: string) => ComponentTypeEnum;
            HalfFloat: ComponentTypeClass<"HALF_FLOAT">;
            Int: ComponentTypeClass<"INT">;
            Short: ComponentTypeClass<"SHORT">;
            toGltf2AccessorComponentType: (
                componentTypeForGltf2: ComponentTypeEnum,
            ) => Gltf2AccessorComponentTypeNumber;
            toTypedArray: (
                componentType: ComponentTypeEnum,
            ) => TypedArrayConstructor | undefined;
            Unknown: ComponentTypeClass<"UNKNOWN">;
            UnsignedByte: ComponentTypeClass<"UNSIGNED_BYTE">;
            UnsignedInt: ComponentTypeClass<"UNSIGNED_INT">;
            UnsignedShort: ComponentTypeClass<"UNSIGNED_SHORT">;
        },
    > = ...