diff --git a/types/three/src/renderers/common/Constants.d.ts b/types/three/src/renderers/common/Constants.d.ts index edd122168..8e036f2ea 100644 --- a/types/three/src/renderers/common/Constants.d.ts +++ b/types/three/src/renderers/common/Constants.d.ts @@ -1,7 +1,8 @@ export declare const AttributeType: { readonly VERTEX: 1; readonly INDEX: 2; - readonly STORAGE: 4; + readonly STORAGE: 3; + readonly INDIRECT: 4; }; export type AttributeType = (typeof AttributeType)[keyof typeof AttributeType]; export declare const GPU_CHUNK_BYTES = 16;