UNPKG

364 BTypeScriptView Raw
1import { RenderTarget, RenderTargetOptions } from "../core/RenderTarget.js";
2import { Texture } from "../textures/Texture.js";
3
4export class WebGLRenderTarget<TTexture extends Texture | Texture[] = Texture> extends RenderTarget<TTexture> {
5 constructor(width?: number, height?: number, options?: RenderTargetOptions);
6
7 readonly isWebGLRenderTarget: true;
8}