2
0

PositionNode.d.ts 298 B

1234567891011121314151617
  1. import { TempNode } from '../core/TempNode';
  2. export class PositionNode extends TempNode {
  3. constructor( scope?: string );
  4. scope: string;
  5. nodeType: string;
  6. copy( source: PositionNode ): this;
  7. static LOCAL: string;
  8. static WORLD: string;
  9. static VIEW: string;
  10. static PROJECTION: string;
  11. }