UNPKG

261 BTypeScriptView Raw
1import { Texture } from "../../textures/Texture.js";
2import { WebGLRenderer } from "../WebGLRenderer.js";
3
4export class WebGLCubeUVMaps {
5 constructor(renderer: WebGLRenderer);
6
7 get<T>(texture: T): T extends Texture ? Texture : T;
8 dispose(): void;
9}