UNPKG

three

Version:

JavaScript 3D library

17 lines (10 loc) 297 B
class NodeFunctionInput { constructor( type, name, qualifier = '', isConst = false ) { this.type = type; this.name = name; this.qualifier = qualifier; this.isConst = isConst; Object.defineProperty( this, 'isNodeFunction', { value: true } ); } } export default NodeFunctionInput;