| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1× 160732× 160732× 1× | /**
* 色表現の検出結果を提供します。
*/
class ColorDetectorResult {
/**
* インスタンスを初期化します。
* @param {String} type 色表現種類。
* @param {String} expression 表現。
*/
constructor(type, expression) {
this.type = type;
this.expression = expression;
}
}
export { ColorDetectorResult };
|