Newer
Older
HuangJiPC / public / static / three / examples / jsm / nodes / utils / BypassNode.d.ts
@zhangdeliang zhangdeliang on 21 Jun 329 bytes update
import { Node } from '../core/Node';
import { NodeBuilder } from '../core/NodeBuilder';

export class BypassNode extends Node {

	constructor( code: Node, value?: Node );

	code: Node;
	value: Node | undefined;
	nodeType: string;

	generate( builder: NodeBuilder, output: string ): string;
	copy( source: BypassNode ): this;

}