/** * Represents a WebGL shader object and provides a mechanism to load shaders from HTML * script tags. */ export default class ShaderCompiler { static compile(gl: WebGLRenderingContext, script: { type: string; source: string; }): WebGLShader; }