Add ability to search available plugins
[oweals/peertube.git] / shared / models / plugins / peertube-plugin-index.model.ts
1 export interface PeerTubePluginIndex {
2   npmName: string
3   description: string
4   homepage: string
5   createdAt: Date
6   updatedAt: Date
7
8   popularity: number
9
10   latestVersion: string
11
12   name?: string
13   installed?: boolean
14 }