1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
import { Light } from './Light.js'; class PointLight extends Light { constructor() { super(); } } class AmbientLight extends Light { constructor() { super(); } } export { PointLight, AmbientLight };