@types/three
Version:
TypeScript definitions for three
9 lines (6 loc) • 364 B
TypeScript
import { RenderTarget, RenderTargetOptions } from "../core/RenderTarget.js";
import { Texture } from "../textures/Texture.js";
export class WebGLRenderTarget<TTexture extends Texture | Texture[] = Texture> extends RenderTarget<TTexture> {
constructor(width?: number, height?: number, options?: RenderTargetOptions);
readonly isWebGLRenderTarget: true;
}