12 lines
267 B
JavaScript
12 lines
267 B
JavaScript
import Chart from "../../core.js";
|
|
export const name = "perUserReaction";
|
|
export const schema = {
|
|
"local.count": {
|
|
range: "small"
|
|
},
|
|
"remote.count": {
|
|
range: "small"
|
|
}
|
|
};
|
|
export const entity = Chart.schemaToEntity(name, schema, true);
|