* wip * wip * wip * wip * wip * wip * wip * Update core.ts * wip * wip * #7361 * delete network chart * federationChart強化 apRequestChart追加 * tweak
14 lines
373 B
TypeScript
14 lines
373 B
TypeScript
import Chart from '../../core';
|
|
|
|
export const name = 'users';
|
|
|
|
export const schema = {
|
|
'local.total': { accumulate: true },
|
|
'local.inc': { range: 'small' },
|
|
'local.dec': { range: 'small' },
|
|
'remote.total': { accumulate: true },
|
|
'remote.inc': { range: 'small' },
|
|
'remote.dec': { range: 'small' },
|
|
} as const;
|
|
|
|
export const entity = Chart.schemaToEntity(name, schema);
|