Change files to use a consistent case

This commit is contained in:
Idrees Hassan
2025-10-26 13:22:24 -04:00
parent 8be8ab2858
commit eda3f9fbc1
4 changed files with 91 additions and 3 deletions

14
src/layer.js Normal file
View File

@@ -0,0 +1,14 @@
// @ts-check
class Layer {
/**
* @param {string[][]} pixels
* @param {string} [tag]
*/
constructor(pixels, tag = "default") {
this.pixels = pixels;
this.tag = tag;
}
}
export default Layer;