mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
* wip * wip * wip * wip * wip * wip * wip * Update core.ts * wip * wip * #7361 * delete network chart * federationChart強化 apRequestChart追加 * tweak
20 lines
472 B
TypeScript
20 lines
472 B
TypeScript
import Chart from '../../core';
|
|
|
|
export const name = 'notes';
|
|
|
|
export const schema = {
|
|
'local.total': { accumulate: true },
|
|
'local.inc': {},
|
|
'local.dec': {},
|
|
'local.diffs.normal': {},
|
|
'local.diffs.reply': {},
|
|
'local.diffs.renote': {},
|
|
'remote.total': { accumulate: true },
|
|
'remote.inc': {},
|
|
'remote.dec': {},
|
|
'remote.diffs.normal': {},
|
|
'remote.diffs.reply': {},
|
|
'remote.diffs.renote': {},
|
|
} as const;
|
|
|
|
export const entity = Chart.schemaToEntity(name, schema);
|