Add plugin settings change watcher
[oweals/peertube.git] / shared / models / result-list.model.ts
1 export interface ResultList<T> {
2   total: number
3   data: T[]
4 }