Files
archived-Pocket-Bird/src/Layer.js
2025-10-26 13:17:18 -04:00

14 lines
204 B
JavaScript

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