12 lines
265 B
TypeScript
12 lines
265 B
TypeScript
export interface ServerStats {
|
|
totalUsers: number
|
|
totalLocalVideos: number
|
|
totalLocalVideoViews: number
|
|
totalLocalVideoComments: number
|
|
|
|
totalVideos: number
|
|
totalVideoComments: number
|
|
|
|
totalInstanceFollowers: number
|
|
totalInstanceFollowing: number
|
|
}
|