diff options
Diffstat (limited to 'shared/models/plugins/plugin-index/peertube-plugin-index.model.ts')
-rw-r--r-- | shared/models/plugins/plugin-index/peertube-plugin-index.model.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shared/models/plugins/plugin-index/peertube-plugin-index.model.ts b/shared/models/plugins/plugin-index/peertube-plugin-index.model.ts new file mode 100644 index 000000000..e91c8b4dc --- /dev/null +++ b/shared/models/plugins/plugin-index/peertube-plugin-index.model.ts | |||
@@ -0,0 +1,14 @@ | |||
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 | } | ||