codanna 0.9.19

Code Intelligence for Large Language Models
Documentation
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 };