@types/three
Version:
TypeScript definitions for three
16 lines (15 loc) • 393 B
TypeScript
import NodeLibrary from "../../common/nodes/NodeLibrary.js";
/**
* This version of a node library represents a basic version
* just focusing on lights and tone mapping techniques.
*
* @private
* @augments NodeLibrary
*/
declare class BasicNodeLibrary extends NodeLibrary {
/**
* Constructs a new basic node library.
*/
constructor();
}
export default BasicNodeLibrary;