]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - shared/models/plugins/peertube-plugin-index.model.ts
Merge branch 'release/2.1.0' into develop
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / peertube-plugin-index.model.ts
... / ...
CommitLineData
1export 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}