]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame_incremental - shared/models/plugins/plugin-index/peertube-plugin-latest-version.model.ts
CLI: plugins install command accept a --plugin-version parameter. (#4599)
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / plugin-index / peertube-plugin-latest-version.model.ts
... / ...
CommitLineData
1export interface PeertubePluginLatestVersionRequest {
2 currentPeerTubeEngine?: string
3
4 npmNames: string[]
5}
6
7export type PeertubePluginLatestVersionResponse = {
8 npmName: string
9 latestVersion: string | null
10}[]