greggman / twgl.js

A Tiny WebGL helper Library
http://twgljs.org
MIT License
2.61k stars 258 forks source link

better typings fro create textures #155

Open Zaitsev opened 4 years ago

Zaitsev commented 4 years ago

This allows intelli-sense to infer result keys

export function createTextures<O extends TexturesOptions, R = {[key in keyof O]: WebGLTexture}>(gl: WebGLRenderingContext, options: O, callback?: TexturesReadyCallback): R;

image