mirror of https://github.com/Chocobozzz/PeerTube
9 lines
164 B
TypeScript
9 lines
164 B
TypeScript
|
export interface ResultList<T> {
|
||
|
total: number
|
||
|
data: T[]
|
||
|
}
|
||
|
|
||
|
export interface ThreadsResultList <T> extends ResultList <T> {
|
||
|
totalNotDeletedComments: number
|
||
|
}
|