mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 10:19:35 +02:00
8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
export interface ResultList<T> {
|
|
total: number
|
|
data: T[]
|
|
}
|
|
|
|
export interface ThreadsResultList <T> extends ResultList <T> {
|
|
totalNotDeletedComments: number
|
|
}
|