27 lines
497 B
JavaScript
27 lines
497 B
JavaScript
import Chart from "../../core.js";
|
|
export const name = "perUserNotes";
|
|
export const schema = {
|
|
total: {
|
|
accumulate: true
|
|
},
|
|
inc: {
|
|
range: "small"
|
|
},
|
|
dec: {
|
|
range: "small"
|
|
},
|
|
"diffs.normal": {
|
|
range: "small"
|
|
},
|
|
"diffs.reply": {
|
|
range: "small"
|
|
},
|
|
"diffs.renote": {
|
|
range: "small"
|
|
},
|
|
"diffs.withFile": {
|
|
range: "small"
|
|
}
|
|
};
|
|
export const entity = Chart.schemaToEntity(name, schema, true);
|