three
Version:
JavaScript 3D library
20 lines (13 loc) • 335 B
TypeScript
import { TempNode } from '../core/TempNode';
import { Node } from '../core/Node';
export class OperatorNode extends TempNode {
constructor( a: Node, b: Node, op: string );
a: Node;
b: Node;
op: string;
copy( source: OperatorNode ): this;
static ADD: string;
static SUB: string;
static MUL: string;
static DIV: string;
}