UNPKG

gulp-structify

Version:

Generates WebGL-compatible Structs and StructBuffers from a template file.

8 lines (7 loc) 234 B
export interface Constructor { prototype: Prototype; } export interface Prototype extends Object { [key: string]: any; } export declare function applyMixins(derivedCtor: Constructor, ...baseCtors: Constructor[]): void;