1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 10:49:36 +02:00
Oinktube/node_modules/three/examples/jsm/nodes/math/OperatorNode.d.ts
2023-12-11 11:59:56 -03:00

19 lines
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;
}