UNPKG

polygonjs-engine

Version:

node-based webgl 3D engine https://polygonjs.com

10 lines (9 loc) 278 B
import { AttribType } from './Constant'; export declare class CoreAttributeData { private _size; private _type; constructor(_size: number, _type: AttribType); size(): number; type(): AttribType; static from_value(attrib_value: any): CoreAttributeData; }