packages/models/src/plugins/plugin-index/peertube-plugin-latest-version.model.ts
export interface PeertubePluginLatestVersionRequest {
currentPeerTubeEngine?: string
npmNames: string[]
}
export type PeertubePluginLatestVersionResponse = {
npmName: string
latestVersion: string | null
}[]