]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/plugin-index/peertube-plugin-latest-version.model.ts
Plugins can add custom instance infobox
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / plugin-index / peertube-plugin-latest-version.model.ts
1 export interface PeertubePluginLatestVersionRequest {
2 currentPeerTubeEngine?: string
3
4 npmNames: string[]
5 }
6
7 export type PeertubePluginLatestVersionResponse = {
8 npmName: string
9 latestVersion: string | null
10 }[]