Variable ComponentTypeConst

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