d071d18dd7
* wip * wip * fix * clean up * Update tsconfig.json * Update activitypub.ts * wip
12 lines
241 B
TypeScript
12 lines
241 B
TypeScript
import Chart from '../../core.js';
|
|
|
|
export const name = 'testGrouped';
|
|
|
|
export const schema = {
|
|
'foo.total': { accumulate: true },
|
|
'foo.inc': {},
|
|
'foo.dec': {},
|
|
} as const;
|
|
|
|
export const entity = Chart.schemaToEntity(name, schema, true);
|