]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/result-list.model.ts
Merge branch 'release/3.1.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / result-list.model.ts
1 export interface ResultList<T> {
2 total: number
3 data: T[]
4 }
5
6 export interface ThreadsResultList <T> extends ResultList <T> {
7 totalNotDeletedComments: number
8 }