codanna 0.9.19

Code Intelligence for Large Language Models
Documentation
1
2
3
4
5
6
7
8
9
10
/**
 * Base Light class
 */
class Light {
  constructor() {
    this.intensity = 1.0;
  }
}

export { Light };