mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
24 lines
344 B
TypeScript
24 lines
344 B
TypeScript
import { StatBackend } from '~/types/boris';
|
|
|
|
export const initialBackendStats: StatBackend = {
|
|
users: {
|
|
total: 0,
|
|
alive: 0,
|
|
},
|
|
nodes: {
|
|
images: 0,
|
|
audios: 0,
|
|
videos: 0,
|
|
texts: 0,
|
|
total: 0,
|
|
by_month: [],
|
|
},
|
|
comments: {
|
|
total: 0,
|
|
by_month: [],
|
|
},
|
|
files: {
|
|
count: 0,
|
|
size: 0,
|
|
},
|
|
};
|