ReflectNode.d.ts 233 B

1234567891011121314
  1. import { TempNode } from '../core/TempNode';
  2. export class ReflectNode extends TempNode {
  3. constructor( scope?: string );
  4. scope: string;
  5. nodeType: string;
  6. static CUBE: string;
  7. static SPHERE: string;
  8. static VECTOR: string;
  9. }