Sindarius / npm_gcodeviewer

Avoid using wildcard imports JS-C1003
Anti-pattern
Minor
3 months agoa year old
Explicitly import the specific method needed
  1'use strict'; 
  2 
  3import * as d3 from 'd3';   4 
  5import { Vector3 } from '@babylonjs/core/Maths/math.vector' 
  6import { Color3, Color4 } from '@babylonjs/core/Maths/math.color'