geostyler
Version:
Framework for styling geodata
15 lines (14 loc) • 384 B
JavaScript
var o = Object.defineProperty;
var l = (t, r, a) => r in t ? o(t, r, { enumerable: !0, configurable: !0, writable: !0, value: a }) : t[r] = a;
var e = (t, r, a) => l(t, typeof r != "symbol" ? r + "" : r, a);
class s {
}
/**
* Creates a default ColorMapEntry with the the required properties.
*/
e(s, "generateColorMapEntry", () => ({
color: "#000"
}));
export {
s as default
};