diff --git a/Sources/Rendering/OpenGL/BufferObject/index.d.ts b/Sources/Rendering/OpenGL/BufferObject/index.d.ts index bd1e238264c..1ee6c59b5a5 100644 --- a/Sources/Rendering/OpenGL/BufferObject/index.d.ts +++ b/Sources/Rendering/OpenGL/BufferObject/index.d.ts @@ -5,9 +5,9 @@ import { vtkAlgorithm, vtkObject } from '../../../interfaces'; * Interface for initial values of BufferObject */ export interface IBufferObjectInitialValues { - objectType?: ObjectType | ObjectType.ARRAY_BUFFER; + objectType?: ObjectType; context?: WebGLRenderingContext | WebGL2RenderingContext; - allocatedGPUMemoryInBytes?: number | 0; + allocatedGPUMemoryInBytes?: number; } /**