mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-25 05:04:08 +02:00
11 lines
281 B
TypeScript
11 lines
281 B
TypeScript
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;
|