diff --git a/types/three/examples/jsm/helpers/TextureHelperGPU.d.ts b/types/three/examples/jsm/helpers/TextureHelperGPU.d.ts new file mode 100644 index 000000000..48f7c1580 --- /dev/null +++ b/types/three/examples/jsm/helpers/TextureHelperGPU.d.ts @@ -0,0 +1,10 @@ +import { Mesh, Texture } from "three"; + +export class TextureHelper extends Mesh { + texture: Texture; + type: "TextureHelper"; + + constructor(texture: Texture, width?: number, height?: number, depth?: number); + + dispose(): void; +}