]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - client/src/app/+about/about-instance/instance-statistics.component.ts
Merge remote-tracking branch 'weblate/develop' into develop
[github/Chocobozzz/PeerTube.git] / client / src / app / +about / about-instance / instance-statistics.component.ts
CommitLineData
f6cf8e8d
C
1import { Component, Input } from '@angular/core'
2import { ServerStats } from '@shared/models/server'
3
4@Component({
5 selector: 'my-instance-statistics',
6 templateUrl: './instance-statistics.component.html',
7 styleUrls: [ './instance-statistics.component.scss' ]
8})
9export class InstanceStatisticsComponent {
10 @Input() serverStats: ServerStats
11}