mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-22 08:46:54 -06:00
5 lines
63 B
TypeScript
5 lines
63 B
TypeScript
export interface ResultList<T> {
|
|
total: number
|
|
data: T[]
|
|
}
|